Skip to content

Commit

Permalink
fix grammar test
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Jan 7, 2024
1 parent 7e45133 commit 2722b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/grammar/test_grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@ def has_no_docstrings(c):
@hypothesis.settings(max_examples=500)
def test_grammar_bruteforce(code):
if utf8_encodable(code):
_, _, reformatted_code = pre_parse(code + "\n")
_, _, _, reformatted_code = pre_parse(code + "\n")
tree = parse_to_ast(reformatted_code)
assert isinstance(tree, Module)

0 comments on commit 2722b10

Please sign in to comment.