Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
byorgey committed Dec 17, 2024
1 parent 5077d1e commit 11dc571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/TestLanguagePipeline.hs
Original file line number Diff line number Diff line change
Expand Up @@ -673,13 +673,13 @@ testLanguagePipeline =
( processCompare
(==)
"move; def x = move; say 3 end; move;"
"1:25: Type mismatch:\n From context, expected `3` to have type `Text`,\n but it actually has type `Int`\n\n - While checking the right-hand side of a function application: say _\n - While checking the definition of x"
"1:25: Type mismatch:\n From context, expected `3` to have type `Text`,\n but it actually has type `Int`\n\n - While checking the argument to a function: say _\n - While checking the definition of x"
)
, testCase
"Error inside function application + argument #2220"
( process
"id 3 3"
"foo"
"1:1: Unbound variable id\n\n - While checking a function applied to an argument: _ 3\n - While checking a function applied to an argument: _ 3"
)
, testGroup
"let and def types"
Expand Down

0 comments on commit 11dc571

Please sign in to comment.