From 7cab7125929b69208d582823312869ff0902151f Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 2 Jan 2021 19:25:09 +0000 Subject: [PATCH] Fix unit test --- unit_test/main_tests/main_options_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_test/main_tests/main_options_test.py b/unit_test/main_tests/main_options_test.py index c7e6bfdd..26e50a72 100644 --- a/unit_test/main_tests/main_options_test.py +++ b/unit_test/main_tests/main_options_test.py @@ -94,7 +94,7 @@ def get_default_repair_command(platform): if platform == 'linux': return 'auditwheel repair -w {dest_dir} {wheel}' elif platform == 'macos': - return 'delocate-listdeps {wheel} && delocate-wheel --require-archs x86_64 -w {dest_dir} {wheel}' + return 'delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}' elif platform == 'windows': return '' else: