Skip to content

Commit e4a0152

Browse files
distrubuted commands are streaming
1 parent edd5d1f commit e4a0152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/searchcommands/test_configuration_settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def generate(self):
8181

8282
self.assertIs(command.configuration.distributed, False)
8383
self.assertIs(command.configuration.generating, True)
84-
self.assertEqual(command.configuration.type, 'streaming')
84+
self.assertEqual(command.configuration.type, 'stateful')
8585

8686
command.configuration.distributed = True
8787

@@ -96,7 +96,7 @@ def generate(self):
9696

9797
self.assertEqual(
9898
[(name, value) for name, value in command.configuration.iteritems()],
99-
[('generating', True), ('type', 'stateful')])
99+
[('generating', True), ('type', 'streaming')])
100100

101101
return
102102

0 commit comments

Comments
 (0)