diff --git a/tests/unit/searchcommands/test_search_command.py b/tests/unit/searchcommands/test_search_command.py index 9d5b4f494..9491df125 100755 --- a/tests/unit/searchcommands/test_search_command.py +++ b/tests/unit/searchcommands/test_search_command.py @@ -92,23 +92,6 @@ class ConfigurationSettings(SearchCommand.ConfigurationSettings): # endregion -@Configuration() -class TestStreamingCommand(StreamingCommand): - def stream(self, records): - serial_number = 0 - for record in records: - action = record["action"] - if action == "raise_error": - raise RuntimeError("Testing") - value = ( - self.search_results_info - if action == "get_search_results_info" - else None - ) - yield {"_serial": serial_number, "data": value} - serial_number += 1 - - @pytest.mark.smoke class TestSearchCommand(TestCase): def setUp(self):