Skip to content

Commit

Permalink
don't call dummy funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanpulver committed Jul 9, 2024
1 parent fa2fea2 commit 88c36f9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,6 @@ def test_debug_flag_with_value_1(self, mock_get_auth_info, mock_is_valid, mock_g
def dummy_function():
pass

dummy_function() # Call the decorated function

# Extract the preprocessed arguments from sys.argv
preprocessed_args = sys.argv[1:] # Exclude the script name 'safety'

Expand All @@ -562,8 +560,6 @@ def test_debug_flag_with_value_true(self, mock_get_auth_info, mock_is_valid, moc
def dummy_function():
pass

dummy_function() # Call the decorated function

# Extract the preprocessed arguments from sys.argv
preprocessed_args = sys.argv[1:] # Exclude the script name 'safety'

Expand Down

0 comments on commit 88c36f9

Please sign in to comment.