diff --git a/tests/test_parse.py b/tests/test_parse.py index 8b9890e..592afe0 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -87,16 +87,6 @@ assert stream.pop() is None -# Draws syntax imported from tokens -@composite -def draw_syntax_imported(draw): - input = draw(lists(test_tokenize.draw_token_random())) - tokens = [] - for t in input: - tokens.append(tokenize.Syntax(t.value, t.location, tokenize.SyntaxType.TOKEN)) - return (input, tokens) - - # Draws syntax and a syntax without whitespace in it @composite def draw_syntax_whitespace(draw):