diff options
Diffstat (limited to 'tests/sources')
-rw-r--r-- | tests/sources/tar.py | 2 | ||||
-rw-r--r-- | tests/sources/zip.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/sources/tar.py b/tests/sources/tar.py index b1859a81a..ca1bef7da 100644 --- a/tests/sources/tar.py +++ b/tests/sources/tar.py @@ -104,7 +104,7 @@ def test_track_warning(cli, tmpdir, datafiles): 'track', 'target.bst' ]) assert result.exit_code == 0 - assert "Potential man-in-the-middle attack!" in result.output + assert "Potential man-in-the-middle attack!" in result.stderr def _list_dir_contents(srcdir): diff --git a/tests/sources/zip.py b/tests/sources/zip.py index 2fd0c04aa..70ad491ff 100644 --- a/tests/sources/zip.py +++ b/tests/sources/zip.py @@ -91,7 +91,7 @@ def test_track_warning(cli, tmpdir, datafiles): 'track', 'target.bst' ]) assert result.exit_code == 0 - assert "Potential man-in-the-middle attack!" in result.output + assert "Potential man-in-the-middle attack!" in result.stderr def _list_dir_contents(srcdir): |