diff --git a/tests/test_parse.py b/tests/test_parse.py index 15955d7..bb29a6a 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -211,7 +211,7 @@ shebang = draw(lists(draw_token_shebang(), max_size=1)) tokens = draw(lists(one_of(strategies))) all_tokens = shebang + tokens - return tokens + return all_tokens # Generates a soup of tokens using a given strategy