Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ospencer committed Oct 14, 2022
1 parent 4a2362b commit 1ca377b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/test/suites/imports.re
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe("imports", ({test, testSkip}) => {
assertCompileError(
"import_all_except_error_constructor",
"import * except {Cons} from \"tlists\"; Cons(2, Empty)",
"Unbound value Cons",
"Unbound constructor Cons",
);
assertCompileError(
"import_all_except_multiple_error_constructor",
Expand All @@ -71,7 +71,7 @@ describe("imports", ({test, testSkip}) => {
assertCompileError(
"import_all_except_multiple_error2_constructor",
"import * except {Cons, append} from \"tlists\"; let x = Cons(2, Empty); append(x, Empty)",
"Unbound value Cons",
"Unbound constructor Cons",
);
/* import {} tests */
assertSnapshot("import_some", "import {x} from \"exportStar\"; x");
Expand Down

0 comments on commit 1ca377b

Please sign in to comment.