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
Apply suggestions from code review
  • Loading branch information
ronag authored Jan 1, 2020
commit ccdfafe3f6bd9153ee0118781e02c79498bfcf99
6 changes: 3 additions & 3 deletions test/parallel/test-stream-writable-write-cb-twice.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const assert = require('assert');
writable.write('hi');
writable.on('error', common.expectsError({
code: 'ERR_MULTIPLE_CALLBACK',
type: Error
name: 'Error'
}));
}

Expand All @@ -31,7 +31,7 @@ const assert = require('assert');
writable.write('hi');
writable.on('error', common.expectsError({
code: 'ERR_MULTIPLE_CALLBACK',
type: Error
name: 'Error'
}));
}

Expand All @@ -48,6 +48,6 @@ const assert = require('assert');
writable.write('hi');
writable.on('error', common.expectsError({
code: 'ERR_MULTIPLE_CALLBACK',
type: Error
name: 'Error'
}));
}