Skip to content

Commit

Permalink
Replace test.is by test.equal
Browse files Browse the repository at this point in the history
Fixes: #165
Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti committed Oct 12, 2023
1 parent 2c8e57a commit 7bc1186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/node/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ tap.test('(CLI) draft4 => 2020-12', (test) => {
}
})

test.is(result.stderr.toString(), '')
test.is(result.status, 0)
test.equal(result.stderr.toString(), '')
test.equal(result.status, 0)
test.end()
})

0 comments on commit 7bc1186

Please sign in to comment.