summaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer-base64-decode.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/buffers/buffer-base64-decode.js')
-rw-r--r--benchmark/buffers/buffer-base64-decode.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/buffers/buffer-base64-decode.js b/benchmark/buffers/buffer-base64-decode.js
index 3497bfd05f..01f7f1bc91 100644
--- a/benchmark/buffers/buffer-base64-decode.js
+++ b/benchmark/buffers/buffer-base64-decode.js
@@ -7,7 +7,7 @@ const bench = common.createBenchmark(main, {});
function main(conf) {
const s = 'abcd'.repeat(8 << 20);
s.match(/./); // Flatten string.
- assert.equal(s.length % 4, 0);
+ assert.strictEqual(s.length % 4, 0);
const b = Buffer.allocUnsafe(s.length / 4 * 3);
b.write(s, 0, s.length, 'base64');
bench.start();