summaryrefslogtreecommitdiff
path: root/std/io/bufio_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-01-17 00:32:59 +0100
committerGitHub <noreply@github.com>2021-01-17 00:32:59 +0100
commitb26dcbc69d56b6ac5780520dad47f10460127d3e (patch)
tree1f0c45b2c39eff83a9fede7a9e6e268a5e04194b /std/io/bufio_test.ts
parentfc45a19801fe32eaf3a82ab8333f433fcfd7ca4e (diff)
chore: Enforce ban-untagged-todo lint rule (#9135)
Diffstat (limited to 'std/io/bufio_test.ts')
-rw-r--r--std/io/bufio_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/io/bufio_test.ts b/std/io/bufio_test.ts
index 8715cc3b8..d6a0856de 100644
--- a/std/io/bufio_test.ts
+++ b/std/io/bufio_test.ts
@@ -55,7 +55,7 @@ const readMakers: ReadMaker[] = [
fn: (r): iotest.OneByteReader => new iotest.OneByteReader(r),
},
{ name: "half", fn: (r): iotest.HalfReader => new iotest.HalfReader(r) },
- // TODO { name: "data+err", r => new iotest.DataErrReader(r) },
+ // TODO(bartlomieju): { name: "data+err", r => new iotest.DataErrReader(r) },
// { name: "timeout", fn: r => new iotest.TimeoutReader(r) },
];