diff --git a/tests/syntax_error/missing_end_quote_in_byte.jou b/tests/syntax_error/missing_end_quote_in_byte.jou index 671c34a1..8f6faac1 100644 --- a/tests/syntax_error/missing_end_quote_in_byte.jou +++ b/tests/syntax_error/missing_end_quote_in_byte.jou @@ -1,6 +1,6 @@ -import "stdlib/io.jou" - -def main() -> int: - printf('?) - # Error: line 4: missing ' to end the byte literal +import "stdlib/io.jou" + +def main() -> int: + printf('?) + # Error: line 4: missing ' to end the byte literal return 0 \ No newline at end of file diff --git a/tests/syntax_error/missing_end_quote_in_string.jou b/tests/syntax_error/missing_end_quote_in_string.jou index 9d9cd4ab..a5608990 100644 --- a/tests/syntax_error/missing_end_quote_in_string.jou +++ b/tests/syntax_error/missing_end_quote_in_string.jou @@ -1,6 +1,6 @@ -import "stdlib/io.jou" - -def main() -> int: - printf("Hello) - # Error: line 4: missing " to end the string +import "stdlib/io.jou" + +def main() -> int: + printf("Hello) + # Error: line 4: missing " to end the string return 0 \ No newline at end of file