summaryrefslogtreecommitdiff
path: root/io/bufio_test.ts
diff options
context:
space:
mode:
authorYusuke Sakurai <kerokerokerop@gmail.com>2019-02-11 08:49:48 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-02-10 18:49:48 -0500
commit33f62789cde407059abba0a7ac18b2145c648ea7 (patch)
tree454d487f232a61f6c57e2ebdad66e49bf939e4d6 /io/bufio_test.ts
parented20bda6ec324b8143c6210024647d2692232c26 (diff)
feat: multipart, etc.. (denoland/deno_std#180)
Original: https://github.com/denoland/deno_std/commit/fda9c98d055091fa886fa444ebd1adcd2ecd21bc
Diffstat (limited to 'io/bufio_test.ts')
-rw-r--r--io/bufio_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/bufio_test.ts b/io/bufio_test.ts
index fa8f4b73b..e63f1c5c9 100644
--- a/io/bufio_test.ts
+++ b/io/bufio_test.ts
@@ -30,7 +30,7 @@ test(async function bufioReaderSimple() {
const data = "hello world";
const b = new BufReader(stringsReader(data));
const s = await readBytes(b);
- assertEqual(s, data);
+ assert.equal(s, data);
});
type ReadMaker = { name: string; fn: (r: Reader) => Reader };