Skip to content

Commit

Permalink
test: check complete error message
Browse files Browse the repository at this point in the history
In test-stream-writable-change-default-encoding, use a regular
expression to match the complete error message.

PR-URL: #14264
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Bryan English <bryan@bryanenglish.com>
  • Loading branch information
fraserxu authored and Trott committed Jul 16, 2017
1 parent fb37922 commit 35398af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ assert.throws(function changeDefaultEncodingToInvalidValue() {
m.setDefaultEncoding({});
m.write('bar');
m.end();
}, TypeError);
}, /^TypeError: Unknown encoding: \[object Object\]$/);

(function checkVairableCaseEncoding() {
const m = new MyWritable(function(isBuffer, type, enc) {
Expand Down

0 comments on commit 35398af

Please sign in to comment.