There was an error while loading. Please reload this page.
1 parent dc5469e commit 59f22e9Copy full SHA for 59f22e9
test/test_collection.py
@@ -521,11 +521,9 @@ def test_group(self):
521
522
def group_checker(args, expected):
523
eval = db.test.group(*args)
524
- cmd = db.test.group(*args, command=True)
+ cmd = db.test.group(*args, **{"command": True})
525
self.assertEqual(eval, expected)
526
self.assertEqual(cmd, expected)
527
- self.assertEqual(eval, cmd)
528
- #last one is not strictly necessary but there for completeness
529
530
531
args = [[], {},
0 commit comments