File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
driver-core/src/test/functional/com/mongodb/operation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ class UserOperationsSpecification extends OperationFunctionalSpecification {
275
275
asList(new InsertRequest (new BsonDocument ()))). execute(getBinding(cluster))
276
276
277
277
then :
278
- new CountOperation (getNamespace()). execute(getBinding(cluster)) == 1
278
+ new CountOperation (getNamespace()). execute(getBinding(cluster)) == 1L
279
279
280
280
cleanup :
281
281
new DropUserOperation (' admin' , rwCredential. userName). execute(getBinding())
@@ -312,7 +312,7 @@ class UserOperationsSpecification extends OperationFunctionalSpecification {
312
312
def count = new CountOperation (getNamespace()). execute(getBinding())
313
313
314
314
then :
315
- count == 0
315
+ count == 0L
316
316
317
317
cleanup :
318
318
new DropUserOperation (' admin' , roCredential. userName). execute(getBinding())
You can’t perform that action at this time.
0 commit comments