Skip to content

Commit

Permalink
Fix test setup for Monoid file rename in Prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown committed Jul 29, 2020
1 parent ce2d47c commit 94a6d7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/src/test/scala/org/dhallj/tests/PreludeSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ class PreludeSuite extends FunSuite() {
val haskellDhallIsAvailable = HaskellDhall.isAvailable()

val preludeFiles = Source.fromResource(s"Prelude").getLines.toList.sorted.flatMap {
case "Monoid" => List("Prelude/Monoid")
case "Monoid" => Nil
case "Monoid.dhall" => List("Prelude/Monoid.dhall")
case "README.md" => Nil
case "package.dhall" => List("Prelude/package.dhall")
case other =>
Expand Down

0 comments on commit 94a6d7f

Please sign in to comment.