Simplify the language used in Test error messages

This commit is contained in:
Jeroen Engels 2019-07-13 08:57:36 +02:00
parent 996c3039d6
commit 685e7dd6e1
2 changed files with 2 additions and 4 deletions

View File

@ -51,8 +51,7 @@ parsingFailure : String
parsingFailure =
"""TEST SOURCE CODE PARSING ERROR
I could not parse the test source code, because it was not
syntactically valid Elm code.
I could not parse the test source code, because it was not valid Elm code.
Hint: Maybe you forgot to add the module definition at the top, like:

View File

@ -45,8 +45,7 @@ parsingFailureTest =
|> expectMessageEqual """
TEST SOURCE CODE PARSING ERROR
I could not parse the test source code, because it was not
syntactically valid Elm code.
I could not parse the test source code, because it was not valid Elm code.
Hint: Maybe you forgot to add the module definition at the top, like: