style: Improve readability of edge case numbers in tests

This commit is contained in:
2026-03-14 17:39:37 -06:00
committed by Tanner
parent 0bf1220c62
commit abe931d61d
+2 -2
View File
@@ -172,8 +172,8 @@ const edgeCaseNumbers = [
Number.MAX_SAFE_INTEGER,
Number.MIN_SAFE_INTEGER,
Math.PI, Math.E,
1e-6, -1e-6, 1e-8, -1e-8,
1e6, -1e6, 1e8, -1e8,
0.000001, -0.000001, 0.00000001, -0.00000001,
1000000, -1000000, 100000000, -100000000,
0.1+0.2, // floating point fun
1/3, 2/3, 0.9999999, 1.0000001
];