Skip to content

Commit 5329dc6

Browse files
author
James Halliday
committed
update the harness test for createStream
1 parent 9420e07 commit 5329dc6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/harness.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ var wanted =
5050
'# fail 1',
5151
'' ];
5252

53-
harness.stream.pipe(collector);
53+
var stream = harness.createStream();
54+
stream.pipe(collector);
5455

5556
test('correct output', function (t) {
56-
harness.stream.on('end', function () {
57+
stream.on('end', function () {
5758
// accept trailing whitespace, or multiple lines on the same write(),
5859
var found = collector.written.join('').split(/\n/).map(function (s) {
5960
return s.replace(/\s+$/, '');

0 commit comments

Comments
 (0)