Skip to content

Commit

Permalink
do not use equals() alias in self-test
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Mar 26, 2021
1 parent 3f787c4 commit d2e0428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-esm.js
Expand Up @@ -4,7 +4,7 @@ try {
t = require('tap')
} catch (e) {
t = require('../')
t.equals(e.code, 'MODULE_NOT_FOUND')
t.equal(e.code, 'MODULE_NOT_FOUND')
t.end()
return
}
Expand Down

0 comments on commit d2e0428

Please sign in to comment.