diff options
author | orvit <cdavis4short@gmail.com> | 2022-07-14 16:52:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 07:52:44 +1000 |
commit | dbf5e95b59656b05f28218a27d128cae9fd68342 (patch) | |
tree | a5aa4d6cde6f39c2439036eb73243c46d2a6a63e /cli/tsc.rs | |
parent | 1a7259b04b7229f6350a7a7c21b50497b5c80c17 (diff) |
refactor: remove redundant qualification of symbols in Rust (#15201)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index e3001583b..633b4cd30 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -798,7 +798,7 @@ mod tests { #[test] fn test_compiler_snapshot() { - let mut js_runtime = deno_core::JsRuntime::new(deno_core::RuntimeOptions { + let mut js_runtime = JsRuntime::new(RuntimeOptions { startup_snapshot: Some(compiler_snapshot()), ..Default::default() }); |