Skip to content

Commit d421e32

Browse files
committed
test: Adding notStrictEqual to setencoding test
This is changing a notEqual test to notStrictEqual as reference in pr: #9997
1 parent 5066e27 commit d421e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-tls-set-encoding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ server.listen(0, function() {
5151

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

5656
// Confirming the buffer string is encoded in ASCII
5757
// and thus does equal the ASCII string representation

0 commit comments

Comments
 (0)