Skip to content

Commit

Permalink
Remove export all from test
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed Jul 3, 2024
1 parent f3d0afc commit b52e5a3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ class ImportsTest extends CompilerTest {
|export Bar.Foo
|export Bar.Foo as Bar
|from Bar.Foo export Bar, Baz
|from Bar.Foo export all
|
|import Foo.Bar.Baz
|export Foo.Bar.Baz
Expand All @@ -73,11 +72,10 @@ class ImportsTest extends CompilerTest {
}

"desugar project name exports correctly" in {
ir.exports.take(4).map(_.showCode()) shouldEqual List(
ir.exports.take(3).map(_.showCode()) shouldEqual List(
"export Bar.Foo.Main as Foo",
"export Bar.Foo.Main as Bar",
"from Bar.Foo.Main export Bar, Baz",
"from Bar.Foo.Main export all"
)
}

Expand Down

0 comments on commit b52e5a3

Please sign in to comment.