Skip to content

Commit

Permalink
fix: Remove not-needed fixtures in test_main.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkapfham committed Jul 27, 2023
1 parent 479a05a commit e5188ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def cwd():
return os.getcwd()


def test_cli_analyze_correct_arguments_nothing_to_analyze_not_looking(cwd, tmpdir):
def test_cli_analyze_correct_arguments_nothing_to_analyze_not_looking(tmpdir):
"""Confirm that using the command-line interface does not crash: analyze command with correct arguments."""
# create some temporary directories;
# note that there is no code inside of this directory
Expand Down Expand Up @@ -117,7 +117,7 @@ def test_cli_analyze_correct_arguments_nothing_to_analyze_not_looking(cwd, tmpdi
assert result.exit_code == 0


def test_cli_analyze_correct_arguments_analyze_chasten_codebase(cwd, tmpdir):
def test_cli_analyze_correct_arguments_analyze_chasten_codebase(cwd):
"""Confirm that using the command-line interface does not crash: analyze command with correct arguments."""
# call the analyze command
project_name = "testing"
Expand Down

0 comments on commit e5188ab

Please sign in to comment.