Skip to content

Commit 8d4b89d

Browse files
committed
fix one test
1 parent 7a844d6 commit 8d4b89d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/promises/vector/constructor.lsts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ assert( safe-alloc-block-count == 0 );
77
mk-vector(type(U8), 2);
88
assert( safe-alloc-block-count == 0 );
99

10-
mk-vector(type(U8), 2).push(123);
10+
let _01 = mk-vector(type(U8), 2).push(123);
1111
assert( safe-alloc-block-count == 0 );
1212

13-
mk-vector(type(U8), 0).push(123);
13+
let _02 = mk-vector(type(U8), 0).push(123);
1414
assert( safe-alloc-block-count == 0 );
1515

1616
assert( mk-vector(type(U8), 2).push(123).push(45)[0] == 123 );

0 commit comments

Comments
 (0)