Skip to content

Commit

Permalink
Simp
Browse files Browse the repository at this point in the history
  • Loading branch information
azdavis committed Sep 14, 2023
1 parent c2ae326 commit 67ee566
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/tests/src/sig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ fn mutual_datatype_forward() {
r#"
signature SIG = sig
datatype foo = Foo of bar
and bar = Bar of int
and bar = Bar
end
"#,
);
Expand All @@ -1153,7 +1153,7 @@ fn mutual_datatype_backward() {
check(
r#"
signature SIG = sig
datatype bar = Bar of int
datatype bar = Bar
and foo = Foo of bar
end
"#,
Expand Down
4 changes: 2 additions & 2 deletions crates/tests/src/smoke/dec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn mutual_datatype_forward() {
check(
r#"
datatype foo = Foo of bar
and bar = Bar of int
and bar = Bar
"#,
);
}
Expand All @@ -168,7 +168,7 @@ and bar = Bar of int
fn mutual_datatype_backward() {
check(
r#"
datatype bar = Bar of int
datatype bar = Bar
and foo = Foo of bar
"#,
);
Expand Down

0 comments on commit 67ee566

Please sign in to comment.