mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Remove parenthesis
This commit is contained in:
parent
881a477ba7
commit
390b73c90d
1 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue