Merge pull request #6309 from jaredvasquez/fix-cafd-docs

Fix typo in documentation of capfd fixture
This commit is contained in:
Ran Benita
2019-12-03 12:15:40 +02:00
committed by GitHub

View File

@@ -360,7 +360,7 @@ capfd
def test_system_echo(capfd):
os.system('echo "hello"')
captured = capsys.readouterr()
captured = capfd.readouterr()
assert captured.out == "hello\n"