Skip to content

Commit 1ef5935

Browse files
author
Luke Bakken
committed
fix another m/r test
1 parent a72eb5c commit 1ef5935

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

riak/tests/test_mapreduce.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ def test_erlang_source_map_reduce(self):
151151
else:
152152
print("test_erlang_source_map_reduce {}".format(e.value))
153153
if strfun_allowed:
154-
self.assertEqual(result, ['2', '3', '4'])
154+
self.assertIn('2', result)
155+
self.assertIn('3', result)
156+
self.assertIn('4', result)
155157

156158
def test_erlang_source_map_reduce_bucket_type(self):
157159
# Create the object...

0 commit comments

Comments
 (0)