aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/unicode-identifiers.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-27 20:44:37 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-27 20:44:37 -0800
commitca5245bb9b61b2a307912e2c35296f9b8d446cf6 (patch)
treee4fd26d29b5d04ec6643192e79aaff82aee5583a /integration/snapshots/unicode-identifiers.js
parent84b3c952d96b30062902d3044e9b6334365f2935 (diff)
downloadbun-v0.0.60.tar.gz
bun-v0.0.60.tar.zst
bun-v0.0.60.zip
:camera:bun-v0.0.60
Diffstat (limited to 'integration/snapshots/unicode-identifiers.js')
-rw-r--r--integration/snapshots/unicode-identifiers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/snapshots/unicode-identifiers.js b/integration/snapshots/unicode-identifiers.js
index c495d69f6..4a192c22a 100644
--- a/integration/snapshots/unicode-identifiers.js
+++ b/integration/snapshots/unicode-identifiers.js
@@ -1,7 +1,7 @@
-var ε = 1.0e-06, ε2 = ε * ε, π = Math.PI, τ = 2 * π, τε = τ - ε, halfπ = π / 2, d3_radians = π / 180, d3_degrees = 180 / π;
+var ε = 0.000001, ε2 = ε * ε, π = Math.PI, τ = 2 * π, τε = τ - ε, halfπ = π / 2, d3_radians = π / 180, d3_degrees = 180 / π;
export {d3_radians};
export function test() {
- console.assert(ε === 1.0e-06);
+ console.assert(ε === 0.000001);
return testDone(import.meta.url);
}