diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-23 16:12:46 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-24 07:41:30 +0100 |
commit | 8b9545c6b2a158d44e18dcaa1147cc1206eabfd3 (patch) | |
tree | a3df523f4d62a99e4e32deecf0aef76ee5adb22f /tests/lvm.js | |
parent | e8a12210e0a5a0d86b5bacfd10e673b36d56fb38 (diff) | |
download | fengari-8b9545c6b2a158d44e18dcaa1147cc1206eabfd3.tar.gz fengari-8b9545c6b2a158d44e18dcaa1147cc1206eabfd3.tar.bz2 fengari-8b9545c6b2a158d44e18dcaa1147cc1206eabfd3.zip |
table.concat
Diffstat (limited to 'tests/lvm.js')
-rw-r--r-- | tests/lvm.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lvm.js b/tests/lvm.js index 8517393..4f02ed5 100644 --- a/tests/lvm.js +++ b/tests/lvm.js @@ -758,19 +758,19 @@ test('LEN', function (t) { }, "Program executed without errors"); t.strictEqual( - L.stack[L.top - 1], + L.stack[L.top - 1].value, 5, "Program output is correct" ); t.strictEqual( - L.stack[L.top - 2], + L.stack[L.top - 2].value, 3, "Program output is correct" ); t.strictEqual( - L.stack[L.top - 3], + L.stack[L.top - 3].value, 0, "Program output is correct" ); |