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
Next Next commit
cleanup test-stream-ispaused.js
  • Loading branch information
Italo A. Casas committed Sep 20, 2016
commit 995f48a550f9b6b4ee66e78502881131e0353bec
7 changes: 4 additions & 3 deletions test/parallel/test-stream-ispaused.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
'use strict';

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@italoacasas I think you missed this one.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

require('../common');
var assert = require('assert');

var stream = require('stream');
const assert = require('assert');
const stream = require('stream');

var readable = new stream.Readable();
const readable = new stream.Readable();

// _read is a noop, here.
readable._read = Function();
Expand Down