Skip to content

Commit 300724f

Browse files
committed
Fix GridFS tests for 3.1.x
1 parent b135b9e commit 300724f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

driver/src/test/unit/com/mongodb/client/gridfs/GridFSFindIterableSpecification.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class GridFSFindIterableSpecification extends Specification {
226226
}
227227
}
228228
def executor = new TestOperationExecutor([cursor()]);
229-
def underlying = new FindIterableImpl(namespace, Document, Document, codecRegistry, readPreference, readConcern, executor,
229+
def underlying = new FindIterableImpl(namespace, Document, Document, codecRegistry, readPreference, executor,
230230
new Document(), new FindOptions())
231231
def mongoIterable = new GridFSFindIterableImpl(underlying)
232232

@@ -255,7 +255,7 @@ class GridFSFindIterableSpecification extends Specification {
255255
}
256256
}
257257
def executor = new TestOperationExecutor([cursor()]);
258-
def underlying = new FindIterableImpl(namespace, Document, Document, codecRegistry, readPreference, readConcern, executor,
258+
def underlying = new FindIterableImpl(namespace, Document, Document, codecRegistry, readPreference, executor,
259259
new Document(), new FindOptions())
260260
def mongoIterable = new GridFSFindIterableImpl(underlying)
261261

0 commit comments

Comments
 (0)