From 38a5d51a6903fb7478d08c7c5011ce1773437359 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 28 Aug 2021 12:38:58 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20option=20name=20=F0=9F=A4=A6=E2=80=8D?= =?UTF-8?q?=E2=99=82=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/test_troubleshooting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_troubleshooting.py b/test/test_troubleshooting.py index 0c3c04c1..7039c268 100644 --- a/test/test_troubleshooting.py +++ b/test/test_troubleshooting.py @@ -48,7 +48,7 @@ def test_failed_repair_with_so_files(tmp_path, capfd, project_contains_so_files) project.generate(project_dir) with pytest.raises(subprocess.CalledProcessError): - utils.cibuildwheel_run(project_dir, add_env={"CIBW_REPAIR_COMMAND": "false"}) + utils.cibuildwheel_run(project_dir, add_env={"CIBW_REPAIR_WHEEL_COMMAND": "false"}) captured = capfd.readouterr() print("out", captured.out)