We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d85a59f commit 9ae07f1Copy full SHA for 9ae07f1
tests/unit/searchcommands/test_search_command.py
@@ -92,23 +92,6 @@ class ConfigurationSettings(SearchCommand.ConfigurationSettings):
92
# endregion
93
94
95
-@Configuration()
96
-class TestStreamingCommand(StreamingCommand):
97
- def stream(self, records):
98
- serial_number = 0
99
- for record in records:
100
- action = record["action"]
101
- if action == "raise_error":
102
- raise RuntimeError("Testing")
103
- value = (
104
- self.search_results_info
105
- if action == "get_search_results_info"
106
- else None
107
- )
108
- yield {"_serial": serial_number, "data": value}
109
- serial_number += 1
110
-
111
112
@pytest.mark.smoke
113
class TestSearchCommand(TestCase):
114
def setUp(self):
0 commit comments