From 80ad031f25cdff68762a94c7808498afeb82a067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20Syrj=C3=A4salo?= Date: Mon, 29 Jul 2024 12:09:59 +0300 Subject: [PATCH] refactor(test): Remove duplicate unit tests --- test/test_output.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/test_output.py b/test/test_output.py index 53b9b27..3fd8f57 100644 --- a/test/test_output.py +++ b/test/test_output.py @@ -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( @@ -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(