From dd3f5cd31b6475ede32321c65f09d99b2757c058 Mon Sep 17 00:00:00 2001 From: snoyer Date: Wed, 30 Aug 2023 20:34:59 +0400 Subject: [PATCH] fix trailing whitespace --- test/test_parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_parsing.py b/test/test_parsing.py index 17b26a6..a04f40e 100644 --- a/test/test_parsing.py +++ b/test/test_parsing.py @@ -187,7 +187,7 @@ class TestParser(unittest.TestCase): with self.assertRaises(SyntaxError) as e: parse_path("M 0 \n1 N 2 3") assert "invalid token" in e.exception.msg - + def test_error_not_enough_arguments(self): with self.assertRaises(SyntaxError) as e: Path("M 0 1\n 2")