diff options
Diffstat (limited to 'js/compiler_test.ts')
-rw-r--r-- | js/compiler_test.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/compiler_test.ts b/js/compiler_test.ts index 57da29ea0..a6385c743 100644 --- a/js/compiler_test.ts +++ b/js/compiler_test.ts @@ -1,11 +1,10 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test, assert, assertEqual } from "./test_util.ts"; -import * as deno from "deno"; // We use a silly amount of `any` in these tests... // tslint:disable:no-any -const { Compiler, jsonEsmTemplate } = (deno as any)._compiler; +const { Compiler, jsonEsmTemplate } = (Deno as any)._compiler; interface ModuleInfo { moduleName: string | undefined; |