- From: Takeshi Yoshino <notifications@github.com>
- Date: Wed, 12 Oct 2016 16:29:09 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Wednesday, 12 October 2016 23:29:38 UTC
tyoshino commented on this pull request.
> @@ -15,17 +15,11 @@ async_test(t => {
});
},
write(chunk) {
- t.step(() => {
- assert_true(expectWriteCall, 'write should not be called until start promise resolves');
- assert_equals(chunk, 'a', 'chunk should be the value passed to write');
- t.done();
- });
+ assert_true(expectWriteCall, 'write should not be called until start promise resolves');
+ assert_equals(chunk, 'a', 'chunk should be the value passed to write');
Ah, right! Sorry I forgot that you've introduced that.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/534
Received on Wednesday, 12 October 2016 23:29:38 UTC