Skip to content

Commit 68ec708

Browse files
committed
bench: useless conditional in benchmarks
1 parent 9d650df commit 68ec708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/windows1252.bench.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe('benchmarks: windows1252', async () => {
4949
expected = expected.replaceAll(/[\x81\x8D\x8F\x90\x9D]/g, '\uFFFD') // iconv-lite maps them to replacement
5050
}
5151

52-
if (!skip) t.assert.deepEqual(f(bufs[i]), expected, name)
52+
t.assert.deepEqual(f(bufs[i]), expected, name)
5353
}
5454
}
5555
})

0 commit comments

Comments
 (0)