diff options
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" ); |