From b91b377c451466b83562300ddb420c4ce992a8ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Sun, 10 Mar 2024 14:16:59 +0200 Subject: [PATCH] Fixed erroneous attribute access on the `capsys` fixture --- tests/test_bdist_wheel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_bdist_wheel.py b/tests/test_bdist_wheel.py index 7c8fedb2..b373177d 100644 --- a/tests/test_bdist_wheel.py +++ b/tests/test_bdist_wheel.py @@ -351,7 +351,7 @@ def test_rmtree_readonly(monkeypatch, tmp_path, capsys): if expected_count: captured = capsys.readouterr() - assert "file.txt" in captured.stdout + assert "file.txt" in captured.out def test_data_dir_with_tag_build(monkeypatch, tmp_path):