From 9f19f0cd58d6410b1a7344df01c5b2da67a4f3be Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 08:47:26 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_level/test_level_04.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_level/test_level_04.py b/tests/test_level/test_level_04.py index ace59adebc7..479833c88af 100644 --- a/tests/test_level/test_level_04.py +++ b/tests/test_level/test_level_04.py @@ -235,8 +235,6 @@ def test_print_comma_starting_ending_quote_gives_UnquotedException(self): exception=hedy.exceptions.UnquotedTextException, ) - - def test_print_comma_without_ending_double_quote_gives_UnquotedException(self): code = 'print "hallo, wereld' @@ -246,7 +244,6 @@ def test_print_comma_without_ending_double_quote_gives_UnquotedException(self): exception=hedy.exceptions.UnquotedTextException, ) - def test_print_comma_without_starting_double_quote_gives_UnquotedException(self): code = 'print hallo, wereld"' @@ -255,6 +252,7 @@ def test_print_comma_without_starting_double_quote_gives_UnquotedException(self) max_level=17, exception=hedy.exceptions.UnquotedTextException, ) + def test_print_without_starting_quote_gives_UnquotedException(self): code = "print hallo wereld'"