From 3059bfb1b3a45ab517da945acf74fe20abcad5a4 Mon Sep 17 00:00:00 2001 From: Victor Date: Fri, 17 Aug 2018 13:00:27 +0200 Subject: [PATCH] Update test with another problem. --- testing/test_capture.py | 3 +++ 1 file changed, 3 insertions(+) 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" """