Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed Sep 13, 2024
1 parent 588a182 commit f3ed99d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Juvix/Compiler/Core/Transformation/MoveApps.hs
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ convertNode = dmap go
-- - https://github.com/anoma/juvix/issues/1654
-- - https://github.com/anoma/juvix/pull/1659
moveApps :: Module -> Module
moveApps = mapT (const convertNode)
moveApps = mapAllNodes convertNode
6 changes: 3 additions & 3 deletions test/Compilation/Positive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ tests =
$(mkRelDir ".")
$(mkRelFile "test075.juvix")
$(mkRelFile "out/test075.out"),
posTestEval
posTest
"Test076: Builtin Maybe"
$(mkRelDir ".")
$(mkRelFile "test076.juvix")
Expand All @@ -466,12 +466,12 @@ tests =
$(mkRelDir ".")
$(mkRelFile "test078.juvix")
$(mkRelFile "out/test078.out"),
posTestEval
posTest
"Test079: Let / LetRec type inference (during lambda lifting) in Core"
$(mkRelDir ".")
$(mkRelFile "test079.juvix")
$(mkRelFile "out/test079.out"),
posTest
posTestEval -- TODO: this test is not compiling
"Test080: Do notation"
$(mkRelDir ".")
$(mkRelFile "test080.juvix")
Expand Down

0 comments on commit f3ed99d

Please sign in to comment.