diff options
Diffstat (limited to 'tests/unit_node/vm_test.ts')
-rw-r--r-- | tests/unit_node/vm_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_node/vm_test.ts b/tests/unit_node/vm_test.ts index 4c370931d..85b955663 100644 --- a/tests/unit_node/vm_test.ts +++ b/tests/unit_node/vm_test.ts @@ -128,7 +128,7 @@ Deno.test({ const obj = {}; assertEquals(isContext(obj), false); assertEquals(isContext(globalThis), false); - const sandbox = runInNewContext("{}"); + const sandbox = runInNewContext("({})"); assertEquals(isContext(sandbox), false); }, }); |