Skip to content

Commit

Permalink
Fix: fixes assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Balou9 authored and greenbonebot committed Jul 31, 2024
1 parent d126bfb commit 2c7fe37
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion autohooks/plugins/isort/isort.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
out, err = status.communicate()
print(out.decode(encoding="utf-8"))
print(err.decode(encoding="utf-8"))
"""


Expand Down
2 changes: 1 addition & 1 deletion tests/test_isort.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_isort_installed(self):

def test_get_isort_arguments(self):
args = get_isort_arguments(config=None)
self.assertEqual(args, DEFAULTsubprocess_ARGUMENTS)
self.assertEqual(args, DEFAULT_ARGUMENTS)

def test_get_isort_config(self):
config_path = get_test_config_path("pyproject.test.toml")
Expand Down

0 comments on commit 2c7fe37

Please sign in to comment.