Skip to content

Commit

Permalink
pass some more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Dec 5, 2022
1 parent 1059489 commit 8e2e5e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/internal/reflection.py
Expand Up @@ -24,7 +24,7 @@
from keyword import iskeyword
from tokenize import COMMENT, detect_encoding, generate_tokens, untokenize
from types import ModuleType
from typing import TYPE_CHECKING, Any, Callable
from typing import TYPE_CHECKING, Callable
from unittest.mock import _patch as PatchType

from hypothesis.internal.compat import is_typed_named_tuple, update_code_location
Expand Down
1 change: 1 addition & 0 deletions hypothesis-python/tests/cover/test_reflection.py
Expand Up @@ -667,6 +667,7 @@ def _prep_source(*pairs):
("", ""),
("def test(): pass", "def test(): pass"),
("def invalid syntax", "def invalid syntax"),
("def also invalid(", "def also invalid("),
(
"""
@example(1)
Expand Down

0 comments on commit 8e2e5e3

Please sign in to comment.