Skip to content

Commit 1b9b79a

Browse files
author
Daniel Nguyen
committed
Fixed a couple of unittests
1 parent e4a0152 commit 1b9b79a

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
@@ -77,7 +77,7 @@ def generate(self):
7777

7878
self.assertEqual(
7979
[(name, value) for name, value in command.configuration.iteritems()],
80-
[('generating', True), ('type', 'streaming')])
80+
[('generating', True), ('type', 'stateful')])
8181

8282
self.assertIs(command.configuration.distributed, False)
8383
self.assertIs(command.configuration.generating, True)
@@ -146,7 +146,7 @@ def stream(self, records):
146146

147147
self.assertEqual(
148148
[(name, value) for name, value in command.configuration.iteritems()],
149-
[('type', 'stateful')])
149+
[('type', 'streaming')])
150150

151151
self.assertIs(command.configuration.distributed, True)
152152
self.assertEqual(command.configuration.type, 'streaming')

0 commit comments

Comments
 (0)