Skip to content

Commit

Permalink
Update test_isort.py
Browse files Browse the repository at this point in the history
Fix method redefinition due to bad merge
  • Loading branch information
timothycrosley authored Sep 12, 2019
1 parent b6f6d51 commit 1e78a9a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test_isort.py
Original file line number Diff line number Diff line change
Expand Up @@ -4222,10 +4222,6 @@ def test_isort_ensures_blank_line_between_import_and_comment() -> None:
assert SortImports(file_contents=test_input, **config).output == expected_output


def test_pyi_formatting_issue_942(tmpdir):
test_input = "import os\n" "\n" "\n" "def my_method():\n"


def test_pyi_formatting_issue_942(tmpdir) -> None:
test_input = "import os\n\n\ndef my_method():\n"
expected_py_output = test_input.splitlines()
Expand Down

0 comments on commit 1e78a9a

Please sign in to comment.