-
-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add regression test for issue #1264 demonstrating failure
- Loading branch information
1 parent
a3a7251
commit 686d3c7
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""A growing set of tests designed to ensure isort doesn't have regressions in new versions""" | ||
import isort | ||
|
||
|
||
def test_isort_duplicating_comments_issue_1264(): | ||
"""Ensure isort doesn't duplicate comments when force_sort_within_sections is set to `True` | ||
as was the case in issue #1264: https://github.com/timothycrosley/isort/issues/1264 | ||
""" | ||
assert isort.code(""" | ||
from homeassistant.util.logging import catch_log_exception | ||
# Loading the config flow file will register... | ||
from . import config_flow | ||
""", force_sort_within_sections=True).count("# Loading the config flow file will register...") == 1 |