Skip to content

Commit e9b0ad3

Browse files
committed
fix ci
1 parent dfad980 commit e9b0ad3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jscomp/build_tests/super_errors/expected/bucklescript.re.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
3 │
77
4 │ app(((x) => x + 1), 2);
88

9-
This is an uncurried BuckleScript function. It must be applied with a dot.
9+
This is an uncurried ReScript function. It must be applied with a dot.
1010

1111
Like this: foo(. a, b)
1212
Not like this: foo(a, b)

jscomp/build_tests/super_errors/expected/uncurry_in_curry.re.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
2 │
77
3 │ f(2,2);
88

9-
This is an uncurried BuckleScript function. It must be applied with a dot.
9+
This is an uncurried ReScript function. It must be applied with a dot.
1010

1111
Like this: foo(. a, b)
1212
Not like this: foo(a, b)

scripts/ciTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function main() {
7171
var binDir = path.join(__dirname, "..", "jscomp", "bin");
7272
if (ounitTest) {
7373
cp.execSync(
74-
`ocamlc.opt -I . -c js_refmt_compiler.mli js_refmt_compiler.ml`,
74+
`ocamlc.opt -I . -c js_compiler.mli js_compiler.ml`,
7575
{
7676
cwd: path.join(__dirname, "..", "lib", "4.06.1", "unstable"),
7777
stdio: [0, 1, 2],

0 commit comments

Comments
 (0)