Skip to content

Commit 59f22e9

Browse files
author
Mike Dirolf
committed
fix SyntaxError and remove extra test (tests are slow enough as it is)
1 parent dc5469e commit 59f22e9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/test_collection.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -521,11 +521,9 @@ def test_group(self):
521521

522522
def group_checker(args, expected):
523523
eval = db.test.group(*args)
524-
cmd = db.test.group(*args, command=True)
524+
cmd = db.test.group(*args, **{"command": True})
525525
self.assertEqual(eval, expected)
526526
self.assertEqual(cmd, expected)
527-
self.assertEqual(eval, cmd)
528-
#last one is not strictly necessary but there for completeness
529527

530528

531529
args = [[], {},

0 commit comments

Comments
 (0)