Skip to content

Commit 04fd108

Browse files
committed
Revert "try passing tests in CI"
This reverts commit 1f1b4b8.
1 parent 1f1b4b8 commit 04fd108

4 files changed

+32
-4
lines changed

jscomp/build_tests/super_errors/expected/curried_value_instead_of_uncurried_in_curried_mode.res.expected

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@
1010
6 │
1111

1212
Signature mismatch:
13-
...
13+
Modules do not match:
14+
{
15+
let add: (int, int) => int
16+
}
17+
is not included in
18+
{
19+
let add: (. int, int) => int
20+
}
1421
Values do not match:
1522
let add: (int, int) => int (curried)
1623
is not included in

jscomp/build_tests/super_errors/expected/curried_value_instead_of_uncurried_in_uncurried_mode.res.expected

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,14 @@
1111
9 │
1212

1313
Signature mismatch:
14-
...
14+
Modules do not match:
15+
{
16+
let add: (int, int) => int
17+
}
18+
is not included in
19+
{
20+
let add: (int, int) => int
21+
}
1522
Values do not match:
1623
let add: (int, int) => int (curried)
1724
is not included in

jscomp/build_tests/super_errors/expected/uncurried_value_instead_of_curried_in_curried_mode.res.expected

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@
1010
6 │
1111

1212
Signature mismatch:
13-
...
13+
Modules do not match:
14+
{
15+
let add: (. int, int) => int
16+
}
17+
is not included in
18+
{
19+
let add: (int, int) => int
20+
}
1421
Values do not match:
1522
let add: (. int, int) => int (uncurried)
1623
is not included in

jscomp/build_tests/super_errors/expected/uncurried_value_instead_of_curried_in_uncurried_mode.res.expected

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@
1010
9 │
1111

1212
Signature mismatch:
13-
...
13+
Modules do not match:
14+
{
15+
let add: (int, int) => int
16+
}
17+
is not included in
18+
{
19+
let add: (int, int) => int
20+
}
1421
Values do not match:
1522
let add: (int, int) => int (uncurried)
1623
is not included in

0 commit comments

Comments
 (0)