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 1c25e27 commit 8f31cc6Copy full SHA for 8f31cc6
tests/searchcommands/test_search_command.py
@@ -97,23 +97,6 @@ class ConfigurationSettings(SearchCommand.ConfigurationSettings):
97
# endregion
98
99
100
-@Configuration()
101
-class TestStreamingCommand(StreamingCommand):
102
- def stream(self, records):
103
- serial_number = 0
104
- for record in records:
105
- action = record["action"]
106
- if action == "raise_error":
107
- raise RuntimeError("Testing")
108
- value = (
109
- self.search_results_info
110
- if action == "get_search_results_info"
111
- else None
112
- )
113
- yield {"_serial": serial_number, "data": value}
114
- serial_number += 1
115
-
116
117
@pytest.mark.smoke
118
class TestSearchCommand(TestCase):
119
def setUp(self):
0 commit comments