Skip to content

Commit

Permalink
Remove parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramdoys authored Nov 16, 2024
1 parent 881a477 commit 390b73c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Parser.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ TEST_CASE_FIXTURE(Fixture, "parse_continue")

TEST_CASE_FIXTURE(Fixture, "continue_not_last_error")
{
CHECK_EQ(matchParseError("while true do continue print(5) end"), "Expected 'end' (to close 'do' at column 12), got 'print'");
matchParseError("while true do continue print(5) end", "Expected 'end' (to close 'do' at column 12), got 'print'");
}

TEST_CASE_FIXTURE(Fixture, "parse_export_type")
Expand Down Expand Up @@ -811,7 +811,7 @@ TEST_CASE_FIXTURE(Fixture, "export_is_an_identifier_only_when_followed_by_type")

TEST_CASE_FIXTURE(Fixture, "incomplete_statement_error")
{
CHECK_EQ(matchParseError("fiddlesticks"), "Incomplete statement: expected assignment or a function call");
matchParseError("fiddlesticks", "Incomplete statement: expected assignment or a function call");
}

TEST_CASE_FIXTURE(Fixture, "parse_compound_assignment")
Expand Down

0 comments on commit 390b73c

Please sign in to comment.