Skip to content

Commit

Permalink
tests: fix CIBW_CONFIG_SETTIGNS typo in test (#2071)
Browse files Browse the repository at this point in the history
fix: Fix CIBW_CONFIG_SETTIGNS typo in test

Caught with https://github.com/crate-ci/typos
  • Loading branch information
akx authored Nov 5, 2024
1 parent c940bed commit c42b1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit_test/main_tests/main_options_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c42b1ce

Please sign in to comment.