diff --git a/tests/parse/test_parse.py b/tests/parse/test_parse.py index 6706f50..3fab4cf 100644 --- a/tests/parse/test_parse.py +++ b/tests/parse/test_parse.py @@ -37,7 +37,7 @@ # Test parse error exception getters @given(draw_parse_error(), draw_syntax_random(), text()) -def test_syntax_syntax_getters(error, syntax, expected): +def test_parse_error_getters(error, syntax, expected): test = ParseErrorException(error, syntax, expected) assert test.error == error assert test.syntax == syntax @@ -46,7 +46,7 @@ # Test parse error exception equals @given(draw_parse_error_exception(), draw_parse_error_exception()) -def test_syntax_syntax_equality(except1, except2): +def test_parse_error_equality(except1, except2): equals = ( except1.error == except2.error and except1.syntax == except2.syntax