diff options
| author | Parnassius <Parnassius@users.noreply.github.com> | 2021-09-30 11:53:08 +0200 |
|---|---|---|
| committer | Parnassius <Parnassius@users.noreply.github.com> | 2021-09-30 15:31:05 +0200 |
| commit | 146e01bc64765149d270485086e06a37e8ab6e03 (patch) | |
| tree | cd4c30533feed2cbf120503b06cdf7223ba770a0 /tests/integration | |
| parent | 995e016b9d888fea02bedeb5be8ea7f01b694b58 (diff) | |
| download | isort-146e01bc64765149d270485086e06a37e8ab6e03.tar.gz | |
Add an option to set a footer for every import section
Closes #1733
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/test_setting_combinations.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/integration/test_setting_combinations.py b/tests/integration/test_setting_combinations.py index d2159fd3..aca9c9ca 100644 --- a/tests/integration/test_setting_combinations.py +++ b/tests/integration/test_setting_combinations.py @@ -553,6 +553,7 @@ else: # 2.x ), default_section="THIRDPARTY", import_headings={}, + import_footers={}, balanced_wrapping=False, use_parentheses=True, order_by_type=True, @@ -859,6 +860,7 @@ else: # 2.x "single_line_exclusions": (), "default_section": "THIRDPARTY", "import_headings": {}, + "import_footers": {}, "balanced_wrapping": False, "use_parentheses": False, "order_by_type": True, @@ -1414,6 +1416,7 @@ def test_isort_is_idempotent(config: isort.Config, disregard_skip: bool) -> None ), default_section="THIRDPARTY", import_headings={}, + import_footers={}, balanced_wrapping=False, use_parentheses=True, order_by_type=True, @@ -1720,6 +1723,7 @@ def test_isort_is_idempotent(config: isort.Config, disregard_skip: bool) -> None "single_line_exclusions": (), "default_section": "THIRDPARTY", "import_headings": {}, + "import_footers": {}, "balanced_wrapping": False, "use_parentheses": False, "order_by_type": True, |
