Skip to content

Commit

Permalink
test: Adding notStrictEqual to setencoding test
Browse files Browse the repository at this point in the history
This is changing a notEqual test to notStrictEqual
as reference in pr: #9997
  • Loading branch information
pauljlucas committed Dec 4, 2016
1 parent 5066e27 commit d421e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-tls-set-encoding.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ server.listen(0, function() {

// Confirming the buffer string is encoded in ASCII
// and thus does NOT match the UTF8 string
assert.notEqual(buffer, messageUtf8);
assert.notStrictEqual(buffer, messageUtf8);

// Confirming the buffer string is encoded in ASCII
// and thus does equal the ASCII string representation
Expand Down

0 comments on commit d421e32

Please sign in to comment.