mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
fix zig tests
This commit is contained in:
parent
205f55be2e
commit
712be89c9d
1 changed files with 2 additions and 2 deletions
|
@ -852,7 +852,7 @@ test "RocStr.concat: small concat small" {
|
|||
roc_str3.deinit(testing.allocator);
|
||||
}
|
||||
|
||||
const result = strConcat(testing.allocator, 8, InPlace.Clone, roc_str1, roc_str2);
|
||||
const result = strConcat(testing.allocator, InPlace.Clone, roc_str1, roc_str2);
|
||||
|
||||
defer result.deinit(testing.allocator);
|
||||
|
||||
|
@ -932,7 +932,7 @@ test "RocStr.joinWith: result is big" {
|
|||
roc_result.deinit(testing.allocator);
|
||||
}
|
||||
|
||||
const result = strJoinWith(testing.allocator, 8, list, roc_sep);
|
||||
const result = strJoinWith(testing.allocator, list, roc_sep);
|
||||
|
||||
defer result.deinit(testing.allocator);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue