diff options
Diffstat (limited to 'io/bufio_test.ts')
-rw-r--r-- | io/bufio_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/io/bufio_test.ts b/io/bufio_test.ts index e63f1c5c9..0a261daea 100644 --- a/io/bufio_test.ts +++ b/io/bufio_test.ts @@ -3,7 +3,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -import { Buffer, Reader, ReadResult } from "deno"; +const { Buffer } = Deno; +import { Reader, ReadResult } from "deno"; import { test, assert, assertEqual } from "../testing/mod.ts"; import { BufReader, BufState, BufWriter } from "./bufio.ts"; import * as iotest from "./iotest.ts"; |