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
commit 42fb1f7ede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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"