Projet

Général

Profil

0001-tests-remove-useless-import-of-py.io-70797.patch

Benjamin Dauvergne, 27 octobre 2022 20:24

Télécharger (687 octets)

Voir les différences:

Subject: [PATCH] tests: remove useless import of py.io (#70797)

 tests/conftest.py | 4 ----
 1 file changed, 4 deletions(-)
tests/conftest.py
65 65

  
66 66
@pytest.fixture
67 67
def caplog(caplog):
68
    import py.io
69

  
70 68
    caplog.set_level(logging.INFO)
71
    caplog.handler.stream = py.io.TextIO()
72
    caplog.handler.records = []
73 69
    return caplog
74 70

  
75 71

  
76
-