From c42b1cecf1d0ea7dbc923641d64625be767d2f5f Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Tue, 5 Nov 2024 08:57:51 +0200 Subject: [PATCH] tests: fix CIBW_CONFIG_SETTIGNS typo in test (#2071) fix: Fix CIBW_CONFIG_SETTIGNS typo in test Caught with https://github.com/crate-ci/typos --- 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 d488a446..849dbe3b 100644 --- a/unit_test/main_tests/main_options_test.py +++ b/unit_test/main_tests/main_options_test.py @@ -270,7 +270,7 @@ def test_config_settings(platform_specific, platform, intercepted_build_args, mo config_settings = 'setting=value setting=value2 other="something else"' if platform_specific: monkeypatch.setenv("CIBW_CONFIG_SETTINGS_" + platform.upper(), config_settings) - monkeypatch.setenv("CIBW_CONFIG_SETTIGNS", "a=b") + monkeypatch.setenv("CIBW_CONFIG_SETTINGS", "a=b") else: monkeypatch.setenv("CIBW_CONFIG_SETTINGS", config_settings)