Skip to content

Commit 3bdc5e2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b44f97f commit 3bdc5e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testing/test_collection.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,9 @@ def test_func():
19161916
result.stdout.fnmatch_lines(["*1 passed*"])
19171917

19181918

1919-
@pytest.mark.skipif(sys.version_info < (3, 14), reason="Annotations are only skipped on 3.14+")
1919+
@pytest.mark.skipif(
1920+
sys.version_info < (3, 14), reason="Annotations are only skipped on 3.14+"
1921+
)
19201922
def test_annotations_deferred_314(pytester: Pytester):
19211923
"""Ensure annotation eval is deferred."""
19221924
pytester.makepyfile(

0 commit comments

Comments
 (0)