diff options
| author | Timothy Edmund Crosley <timothy.crosley@gmail.com> | 2020-02-12 13:36:56 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-12 13:36:56 -0800 |
| commit | 588623564e00a09c4c5d8175b1b5dca17e9f4451 (patch) | |
| tree | 15a46f7e0e95a04377aa09e5905ee4dcdce6e0df | |
| parent | 78ceb74e131722b4bc6318e2d0f9584676aad706 (diff) | |
| download | isort-588623564e00a09c4c5d8175b1b5dca17e9f4451.tar.gz | |
Add missing new line between functions (Pep8 requirement) to test_isort
| -rw-r--r-- | tests/test_isort.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_isort.py b/tests/test_isort.py index 59e84358..4aadcc9e 100644 --- a/tests/test_isort.py +++ b/tests/test_isort.py @@ -537,6 +537,7 @@ def test_output_modes() -> None: test_output = SortImports(file_contents=test_input, line_length=100).output assert test_output == test_input + def test_qa_comment_case() -> None: test_input = "from veryveryveryveryveryveryveryveryveryveryvery import X # NOQA" test_output = SortImports( |
