Skip to content

Commit fdd7261

Browse files
committed
remove cruft
1 parent 6116096 commit fdd7261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unified_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ def process_error(self, exception, spec):
604604

605605
if expect_result:
606606
if isinstance(exception, BulkWriteError):
607-
result = SpecTestUtil.parse_bulk_write_error_result(
607+
result = parse_bulk_write_error_result(
608608
exception)
609609
self.match_evaluator.match_result(expect_result, result)
610610
else:
@@ -650,7 +650,7 @@ def _collectionOperation_aggregate(self, target, *args, **kwargs):
650650
def _collectionOperation_bulkWrite(self, target, *args, **kwargs):
651651
self.__raise_if_unsupported('bulkWrite', target, Collection)
652652
write_result = target.bulk_write(*args, **kwargs)
653-
return SpecTestUtil.parse_bulk_write_result(write_result)
653+
return parse_bulk_write_result(write_result)
654654

655655
def _collectionOperation_find(self, target, *args, **kwargs):
656656
self.__raise_if_unsupported('find', target, Collection)

0 commit comments

Comments
 (0)