Skip to content

Commit

Permalink
refactor(test): Remove duplicate unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asyrjasalo committed Jul 29, 2024
1 parent 9bac34c commit 80ad031
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions test/test_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,6 @@ def test_output_log_json_sort_keys_true(self):
self.output_dict, sort_keys=True, also_console=True
)

def test_output_log_json_console_true(self):
self.library.output(self.output_dict, also_console=True)
self.library.log_json.assert_called_with(
self.output_dict, sort_keys=False, also_console=True
)

def test_output_string_values_true(self):
self.library.output(self.output_dict, also_console="true")
self.library.log_json.assert_called_with(
Expand Down Expand Up @@ -97,12 +91,6 @@ def test_output_schema_log_json_sort_keys_true(self):
self.output_schema_dict, sort_keys=True, also_console=True
)

def test_output_schema_log_json_console_true(self):
self.library.output_schema(self.output_dict, also_console=True)
self.library.log_json.assert_called_with(
self.output_schema_dict, sort_keys=False, also_console=True
)

def test_output_schema_string_values_true(self):
self.library.output_schema(self.output_dict, also_console="true")
self.library.log_json.assert_called_with(
Expand Down

0 comments on commit 80ad031

Please sign in to comment.