From 0bb0af6c1e62189d7689e9e6811c62c67b10dbf5 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Wed, 8 Oct 2025 10:01:35 -0700 Subject: [PATCH] ok --- tests/native.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/native.test.ts b/tests/native.test.ts index d14ad5c..a4c980e 100644 --- a/tests/native.test.ts +++ b/tests/native.test.ts @@ -128,7 +128,7 @@ test("CALL_NATIVE - function not found", async () => { const vm = new VM(bytecode) - await expect(vm.run()).rejects.toThrow('CALL_NATIVE: function not found: nonexistent') + expect(vm.run()).rejects.toThrow('CALL_NATIVE: function not found: nonexistent') }) test("CALL_NATIVE - using result in subsequent operations", async () => {