Update test with another problem.

This commit is contained in:
Victor 2018-08-17 13:00:27 +02:00
parent e391c47ed8
commit 3059bfb1b3
1 changed files with 3 additions and 0 deletions

View File

@ -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"
"""