builtin: fix warnings for tests inside vlib/builtin/js

This commit is contained in:
Delyan Angelov 2022-01-30 16:36:56 +02:00
parent f6cb772347
commit 96c8188083
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
4 changed files with 9 additions and 1 deletions

View file

@ -1166,7 +1166,9 @@ fn test_array_int_pop() {
assert a.len == 3
assert z == 4
x1 := a.pop()
println(x1)
x2 := a.pop()
println(x2)
final := a.pop()
assert final == 1
}