Skip to content

Commit 4762978

Browse files
committed
fixup! test case
1 parent 1ebb999 commit 4762978

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

test/parallel/test-performance-function.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,11 @@ const {
8181
const n = performance.timerify(m);
8282
const o = performance.timerify(m);
8383
const p = performance.timerify(n);
84-
assert.strictEqual(n, o);
85-
assert.strictEqual(n, p);
84+
assert.notStrictEqual(n, o);
85+
assert.notStrictEqual(n, p);
8686
assert.strictEqual(n.length, m.length);
87+
assert.strictEqual(o.length, m.length);
88+
assert.strictEqual(p.length, m.length);
8789
assert.strictEqual(n.name, 'timerified m');
8890
}
8991

0 commit comments

Comments
 (0)