mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
Fix test
This commit is contained in:
parent
a9d4b38e44
commit
35fab76cca
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ test "RocStr.concat: small concat small" {
|
|||
const str3_ptr: [*]u8 = &str3;
|
||||
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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue