Skip to content

Commit

Permalink
Fix missing “not” in default message for strictNotSame
Browse files Browse the repository at this point in the history
  • Loading branch information
charmander committed Nov 6, 2017
1 parent 067dc57 commit 13f2ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/asserts.js
Expand Up @@ -104,7 +104,7 @@ function decorate (t) {
})

t.addAssert('strictNotSame', 2, function (f, w, m, e) {
m = m || 'should be equivalent strictly'
m = m || 'should not be equivalent strictly'
e.found = f
e.doNotWant = w
return this.notOk(tsame.strict(f, w), m, e)
Expand Down

0 comments on commit 13f2ca2

Please sign in to comment.