diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/buffer_test.ts | 2 | ||||
-rw-r--r-- | js/console_test.ts | 2 | ||||
-rw-r--r-- | js/event_target_test.ts | 2 | ||||
-rw-r--r-- | js/headers_test.ts | 2 | ||||
-rw-r--r-- | js/mkdir_test.ts | 2 | ||||
-rw-r--r-- | js/rename_test.ts | 2 | ||||
-rw-r--r-- | js/resources_test.ts | 2 | ||||
-rw-r--r-- | js/symlink_test.ts | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/js/buffer_test.ts b/js/buffer_test.ts index 2683b3862..7186a94b6 100644 --- a/js/buffer_test.ts +++ b/js/buffer_test.ts @@ -3,7 +3,7 @@ import * as deno from "deno"; // This code has been ported almost directly from Go's src/bytes/buffer_test.go // Copyright 2009 The Go Authors. All rights reserved. BSD license. // https://github.com/golang/go/blob/master/LICENSE -import { assert, assertEqual, test } from "./test_util.ts"; +import { assertEqual, test } from "./test_util.ts"; // N controls how many iterations of certain checks are performed. const N = 100; let testBytes: Uint8Array | null; diff --git a/js/console_test.ts b/js/console_test.ts index 6b6411ae8..21116f7c5 100644 --- a/js/console_test.ts +++ b/js/console_test.ts @@ -1,6 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { Console, libdeno, stringifyArgs, inspect } from "deno"; -import { test, assert, assertEqual } from "./test_util.ts"; +import { test, assertEqual } from "./test_util.ts"; const console = new Console(libdeno.print); diff --git a/js/event_target_test.ts b/js/event_target_test.ts index ebb92c7f0..5771ca17d 100644 --- a/js/event_target_test.ts +++ b/js/event_target_test.ts @@ -1,5 +1,5 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. -import { test, assert, assertEqual } from "./test_util.ts"; +import { test, assertEqual } from "./test_util.ts"; test(function addEventListenerTest() { const document = new EventTarget(); diff --git a/js/headers_test.ts b/js/headers_test.ts index 1433ba58e..440ce4e8a 100644 --- a/js/headers_test.ts +++ b/js/headers_test.ts @@ -1,5 +1,5 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. -import { test, testPerm, assert, assertEqual } from "./test_util.ts"; +import { test, assert, assertEqual } from "./test_util.ts"; import * as deno from "deno"; // Logic heavily copied from web-platform-tests, make diff --git a/js/mkdir_test.ts b/js/mkdir_test.ts index 27da93c16..ea6028c9e 100644 --- a/js/mkdir_test.ts +++ b/js/mkdir_test.ts @@ -1,5 +1,5 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. -import { test, testPerm, assert, assertEqual } from "./test_util.ts"; +import { testPerm, assert, assertEqual } from "./test_util.ts"; import * as deno from "deno"; testPerm({ write: true }, function mkdirSyncSuccess() { diff --git a/js/rename_test.ts b/js/rename_test.ts index 450760dae..d82f9f2c7 100644 --- a/js/rename_test.ts +++ b/js/rename_test.ts @@ -1,5 +1,5 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. -import { test, testPerm, assert, assertEqual } from "./test_util.ts"; +import { testPerm, assert, assertEqual } from "./test_util.ts"; import * as deno from "deno"; testPerm({ write: true }, function renameSyncSuccess() { diff --git a/js/resources_test.ts b/js/resources_test.ts index 3b34d7395..578b6c72a 100644 --- a/js/resources_test.ts +++ b/js/resources_test.ts @@ -1,5 +1,5 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. -import { test, testPerm, assert, assertEqual } from "./test_util.ts"; +import { test, testPerm, assertEqual } from "./test_util.ts"; import * as deno from "deno"; test(function resourcesStdio() { diff --git a/js/symlink_test.ts b/js/symlink_test.ts index a3203ac6e..84dc45279 100644 --- a/js/symlink_test.ts +++ b/js/symlink_test.ts @@ -1,5 +1,5 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. -import { test, testPerm, assert, assertEqual } from "./test_util.ts"; +import { testPerm, assert, assertEqual } from "./test_util.ts"; import * as deno from "deno"; testPerm({ write: true }, function symlinkSyncSuccess() { |