Skip to content

Commit

Permalink
fix benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Nov 7, 2022
1 parent 1cb2681 commit 474b76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var fixtures = {
'regex literal (differing) ': [ /^abc$/, /^def$/, false ],
'number literal (differing) ': [ 1, 2, false ],
'null & undefined ': [ null, undefined, false ],
'buffer (differing) ': [ Buffer.from(123), Buffer.from(456), false ],
'buffer (differing) ': [ Buffer.from('a'), Buffer.from('b'), false ],
'date (differing) ': [ new Date(123), new Date(456), false ],
'error ': [ new Error(''), new Error(''), false ],
'map (differing) ': [ new Map().set('a', 1), new Map().set('a', 2), false ],
Expand Down

0 comments on commit 474b76d

Please sign in to comment.