Skip to content

Commit a1c081f

Browse files
committed
squash: fix test
Number.EPSILON < 2**-24
1 parent e41a6a2 commit a1c081f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-assert-typedarray-deepequal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ suite('notEqualArrayPairs', () => {
7878
[new Int16Array([0]), new Uint16Array([256])],
7979
[new Int16Array([-256]), new Uint16Array([0xff00])], // same bits
8080
[new Int32Array([-256]), new Uint32Array([0xffffff00])], // ditto
81-
[new Float16Array([Number.EPSILON]), new Float16Array([0.0])],
81+
[new Float16Array([0.1]), new Float16Array([0.0])],
8282
[new Float16Array([0.1]), new Float16Array([0.1, 0.2])],
8383
[new Float32Array([0.1]), new Float32Array([0.0])],
8484
[new Float32Array([0.1]), new Float32Array([0.1, 0.2])],

0 commit comments

Comments
 (0)