diff --git a/tests/test_parse.py b/tests/test_parse.py index d3cafdb..187bd2a 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -24,7 +24,7 @@ # Draws a token syntax value @composite def draw_syntax_token(draw): - value = draw(test_tokenize.draw_token_random()) + value = draw(test_tokenize.draw_token_classified()) location = draw(draw_syntax_location()) type = parse.SyntaxType.TOKEN return parse.Syntax(value, location, type)