summaryrefslogtreecommitdiff
path: root/buffer_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'buffer_test.ts')
-rw-r--r--buffer_test.ts10
1 files changed, 7 insertions, 3 deletions
diff --git a/buffer_test.ts b/buffer_test.ts
index c614b2e03..8365b29bd 100644
--- a/buffer_test.ts
+++ b/buffer_test.ts
@@ -1,8 +1,12 @@
// 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 { test, assert, assertEqual } from "./test_util.ts";
-import { Buffer } from "deno";
+import {
+ test,
+ assert,
+ assertEqual
+} from "http://deno.land/x/testing/testing.ts";
+import { Buffer } from "./buffer.ts";
// N controls how many iterations of certain checks are performed.
const N = 100;
@@ -13,7 +17,7 @@ function init() {
if (testBytes == null) {
testBytes = new Uint8Array(N);
for (let i = 0; i < N; i++) {
- testBytes[i] = "a".charCodeAt(0) + (i % 26);
+ testBytes[i] = "a".charCodeAt(0) + i % 26;
}
const decoder = new TextDecoder();
testString = decoder.decode(testBytes);