diff options
Diffstat (limited to 'libdeno/libdeno_test.cc')
-rw-r--r-- | libdeno/libdeno_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdeno/libdeno_test.cc b/libdeno/libdeno_test.cc index 90fceef73..8949e7f4a 100644 --- a/libdeno/libdeno_test.cc +++ b/libdeno/libdeno_test.cc @@ -320,7 +320,7 @@ TEST(LibDenoTest, SharedAtomics) { deno_buf shared = {nullptr, 0, reinterpret_cast<uint8_t*>(s), sizeof s, 0}; Deno* d = deno_new(deno_config{0, empty, shared, nullptr}); deno_execute(d, nullptr, "a.js", - "Atomics.add(new Int32Array(libdeno.shared), 0, 1)"); + "Atomics.add(new Int32Array(Deno.core.shared), 0, 1)"); EXPECT_EQ(nullptr, deno_last_exception(d)); EXPECT_EQ(s[0], 1); EXPECT_EQ(s[1], 1); |