diff --git a/testing/test_capture.py b/testing/test_capture.py index 4d89f0b9e..1bc1f2f8d 100644 --- a/testing/test_capture.py +++ b/testing/test_capture.py @@ -1379,8 +1379,7 @@ def test_capturing_and_logging_fundamentals(pytester: Pytester, method: str) -> # here we check a fundamental feature p = pytester.makepyfile( """ - import sys, os - import py, logging + import sys, os, logging from _pytest import capture cap = capture.MultiCapture( in_=None, diff --git a/testing/test_pathlib.py b/testing/test_pathlib.py index 2cd1e6355..5eb153e84 100644 --- a/testing/test_pathlib.py +++ b/testing/test_pathlib.py @@ -121,7 +121,7 @@ class TestImportPath: module_c.write_text( dedent( """ - import py; + import pluggy; import otherdir.a value = otherdir.a.result """ @@ -131,7 +131,7 @@ class TestImportPath: module_d.write_text( dedent( """ - import py; + import pluggy; from otherdir import a value2 = a.result """