mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
Fix test
This commit is contained in:
parent
a9d4b38e44
commit
35fab76cca
@ -610,7 +610,7 @@ test "RocStr.concat: small concat small" {
|
|||||||
const str3_ptr: [*]u8 = &str3;
|
const str3_ptr: [*]u8 = &str3;
|
||||||
var roc_str3 = RocStr.init(str3_ptr, str3_len);
|
var roc_str3 = RocStr.init(str3_ptr, str3_len);
|
||||||
|
|
||||||
const result = strConcat(8, roc_str1, roc_str2);
|
const result = strConcat(8, InPlace.Clone, roc_str1, roc_str2);
|
||||||
|
|
||||||
expect(roc_str3.eq(result));
|
expect(roc_str3.eq(result));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user