We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64ee931 commit b06ec17Copy full SHA for b06ec17
test/test_bulk.py
@@ -597,7 +597,7 @@ def test_single_ordered_batch(self):
597
batch = self.coll.initialize_ordered_bulk_op()
598
batch.insert({'a': 1})
599
batch.find({'a': 1}).update_one({'$set': {'b': 1}})
600
- batch.find({'a': 2}).upsert().update_one({'$set': {'b' :2}})
+ batch.find({'a': 2}).upsert().update_one({'$set': {'b': 2}})
601
batch.insert({'a': 3})
602
batch.find({'a': 3}).remove()
603
result = batch.execute()
0 commit comments