diff --git a/tests/test_parser.py b/tests/test_parser.py index 1b5f42b..7c4fd7f 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -216,9 +216,9 @@ def test_e_dead_include(): assert 'Dead including' in str(excinfo.value) -def test_e_grammer_error_at_eof(): +def test_e_grammar_error_at_eof(): with pytest.raises(ThriftGrammarError) as excinfo: - load('parser-cases/e_grammer_error_at_eof.thrift') + load('parser-cases/e_grammar_error_at_eof.thrift') assert str(excinfo.value) == 'Grammar error at EOF'