This commit is contained in:
Andre Wagner
2026-04-30 10:07:23 -05:00
parent ae9b84a814
commit 990128f41d

View File

@@ -84,9 +84,7 @@ TEST(VM, BasicCode)
VM vm;
vm.load_bytecode(std::move(ba));
printf("%s\n", vm.debug_stack().c_str());
vm.call(0);
printf("%s\n", vm.debug_stack().c_str());
int32_t result = vm.to_integer(-1);
ASSERT_EQ(result, 5);