diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-26 19:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 19:57:38 +0200 |
commit | 14aaa73c0200d7fac4aa224d623e28b5955daab9 (patch) | |
tree | b5a0c41f831fefb2d506f323a55570493a216787 /cli/tools/test.rs | |
parent | 2df6db36c85c27d424d54e9c168ef4ea09c5c08c (diff) |
refactor: don't expose Deno[Deno.internal].core namespace (#18816)
Diffstat (limited to 'cli/tools/test.rs')
-rw-r--r-- | cli/tools/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/test.rs b/cli/tools/test.rs index 853307374..17d1cebf3 100644 --- a/cli/tools/test.rs +++ b/cli/tools/test.rs @@ -954,7 +954,7 @@ pub async fn test_specifier( if ps.options.trace_ops() { worker.js_runtime.execute_script_static( located_script_name!(), - "Deno[Deno.internal].core.enableOpCallTracing();", + "Deno[Deno.internal].enableOpCallTracing();", )?; } worker.dispatch_load_event(located_script_name!())?; |