Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! stream: postpone setting flowing for on('readable')
  • Loading branch information
lundibundi committed Aug 9, 2018
commit d699f4839a03bee617f568502ef4351b62a4b91d
2 changes: 1 addition & 1 deletion test/parallel/test-stream-readable-reading-readingMore.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const Readable = require('stream').Readable;
readable.push('pushed');

// we are still not flowing, we will be resuming in the next tick
assert.strictEqual(state.flowing, false);
assert.strictEqual(state.flowing, null);

// wait for nextTick, so the readableListener flag resets
process.nextTick(function() {
Expand Down