diff --git a/testing/test_capture.py b/testing/test_capture.py index 9140d2fbf..782971af0 100644 --- a/testing/test_capture.py +++ b/testing/test_capture.py @@ -1407,6 +1407,9 @@ def test_capsys_with_cli_logging(testdir): logging.info("something") print("next") + + logging.info("something") + captured = capsys.readouterr() assert captured.out == "next\\n" """