From eada92819c9027b08a06ab51a57eb10730aa6933 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Sun, 20 Jun 2021 19:41:06 -0700 Subject: [PATCH] Update integration testst to understand new sort_order setting --- tests/integration/test_setting_combinations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_setting_combinations.py b/tests/integration/test_setting_combinations.py index 7b57199f0..d2159fd3e 100644 --- a/tests/integration/test_setting_combinations.py +++ b/tests/integration/test_setting_combinations.py @@ -56,6 +56,7 @@ def configs() -> st.SearchStrategy[isort.Config]: "default_section": st.sampled_from(sorted(isort.settings.KNOWN_SECTION_MAPPING)), "force_grid_wrap": st.integers(0, 20), "profile": st.sampled_from(sorted(isort.settings.profiles)), + "sort_order": st.sampled_from(sorted(("native", "natural", "natural_plus"))), "py_version": st.sampled_from(("auto",) + isort.settings.VALID_PY_TARGETS), } kwargs = {**inferred_kwargs, **specific}