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
[sqwsh] typo /s/inherits/inherit
  • Loading branch information
refack committed Aug 19, 2017
commit a17829ddc10eebf7fb09b99b22eea6e6fa113458
6 changes: 3 additions & 3 deletions test/parallel/test-stream-inheritance.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ assert.ok(!(undefined instanceof Writable));
function CustomWritable() {
assert.ok(
this instanceof CustomWritable,
`${this} does not inherits from CustomWritable`
`${this} does not inherit from CustomWritable`
);
assert.ok(
this instanceof Writable,
`${this} does not inherits from Writable`
`${this} does not inherit from Writable`
);
}

Expand All @@ -53,6 +53,6 @@ common.expectsError(
{
code: 'ERR_ASSERTION',
type: assert.AssertionError,
message: 'undefined does not inherits from CustomWritable'
message: 'undefined does not inherit from CustomWritable'
}
);