Skip to content

Commit

Permalink
Remove unused imports (denoland#1503)
Browse files Browse the repository at this point in the history
  • Loading branch information
J2P authored and ry committed Jan 12, 2019
1 parent e29a676 commit 6c9695a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion js/buffer_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion js/console_test.ts
Original file line number Diff line number Diff line change
@@ -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);

Expand Down
2 changes: 1 addition & 1 deletion js/event_target_test.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
2 changes: 1 addition & 1 deletion js/headers_test.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion js/mkdir_test.ts
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion js/rename_test.ts
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion js/resources_test.ts
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion js/symlink_test.ts
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down

0 comments on commit 6c9695a

Please sign in to comment.