Merge pull request #6309 from jaredvasquez/fix-cafd-docs
Fix typo in documentation of capfd fixture
This commit is contained in:
commit
42fb1f7ede
|
@ -360,7 +360,7 @@ capfd
|
||||||
|
|
||||||
def test_system_echo(capfd):
|
def test_system_echo(capfd):
|
||||||
os.system('echo "hello"')
|
os.system('echo "hello"')
|
||||||
captured = capsys.readouterr()
|
captured = capfd.readouterr()
|
||||||
assert captured.out == "hello\n"
|
assert captured.out == "hello\n"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue