Skip to content

Commit 7bb2d19

Browse files
committed
Prefix decimals with 0 in tests
1 parent ec5be75 commit 7bb2d19

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/fixtures/stdlib/kitchen-sink/actual.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ looseEq(1, '1')
22
looseNotEq(1, '1')
33
foo(1, '1')
44
uniq(x) -> x
5-
map([.1, .2, .5, .9], round)~uniq()
5+
map([0.1, 0.2, 0.5, 0.9], round)~uniq()

test/fixtures/stdlib/kitchen-sink/expected.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ function uniq(x) {
88
return x;
99
}
1010

11-
uniq(map([.1, .2, .5, .9], round));
11+
uniq(map([0.1, 0.2, 0.5, 0.9], round));

test/fixtures/stdlib/require-true/actual.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ looseEq(1, '1')
22
looseNotEq(1, '1')
33
foo(1, '1')
44
uniq(x) -> x
5-
map([.1, .2, .5, .9], round)~uniq()
5+
map([0.1, 0.2, 0.5, 0.9], round)~uniq()

test/fixtures/stdlib/require-true/expected.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ function uniq(x) {
1616
return x;
1717
}
1818

19-
uniq(map([.1, .2, .5, .9], round));
19+
uniq(map([0.1, 0.2, 0.5, 0.9], round));

0 commit comments

Comments
 (0)