summaryrefslogtreecommitdiff
path: root/js/buffer_test.ts
diff options
context:
space:
mode:
authorJaePil Jung <jjp5023@gmail.com>2019-01-12 23:16:18 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-01-12 09:16:18 -0500
commit6c9695a528a2967d837f01030412526659735a12 (patch)
tree355ba81be12cb3fff111ceea2162584b4a0fc784 /js/buffer_test.ts
parente29a676b78773ddbb095a41eaf4f2ce5a8a701ab (diff)
Remove unused imports (#1503)
Diffstat (limited to 'js/buffer_test.ts')
-rw-r--r--js/buffer_test.ts2
1 files changed, 1 insertions, 1 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;