Skip to content

Commit 773317d

Browse files
committed
Fix
1 parent f40c765 commit 773317d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jscomp/test/bs_float_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ eq("File \"bs_float_test.ml\", line 29, characters 5-12", parseFloat("-1.0"), -1
6262

6363
eq("File \"bs_float_test.ml\", line 30, characters 5-12", parseFloat("-1.5"), -1.5);
6464

65-
eq("File \"bs_float_test.ml\", line 31, characters 5-12", parseFloat("-1.7"), -1.0);
65+
eq("File \"bs_float_test.ml\", line 31, characters 5-12", parseFloat("-1.7"), -1.7);
6666

6767
eq("File \"bs_float_test.ml\", line 34, characters 5-12", String(1.0), "1");
6868

jscomp/test/bs_float_test.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ let () =
2828
eq __LOC__ (F.fromString "1.7") 1.7;
2929
eq __LOC__ (F.fromString "-1.0") (-1.0);
3030
eq __LOC__ (F.fromString "-1.5") (-1.5);
31-
eq __LOC__ (F.fromString "-1.7") (-1.0)
31+
eq __LOC__ (F.fromString "-1.7") (-1.7)
3232

3333
let () =
3434
eq __LOC__ (F.toString 1.0) "1";

0 commit comments

Comments
 (0)