Skip to content

Commit ef778cd

Browse files
committed
Fix @IgnoreIf annotation for maxAwaitTime aggregation test
1 parent 216df07 commit ef778cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver-core/src/test/functional/com/mongodb/operation/AggregateOperationSpecification.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ class AggregateOperationSpecification extends OperationFunctionalSpecification {
443443
async << [true, false]
444444
}
445445

446-
@IgnoreIf({ !isStandalone() || !serverVersionAtLeast(3, 6) })
446+
@IgnoreIf({ isStandalone() || !serverVersionAtLeast(3, 6) })
447447
def 'should be able to respect maxAwaitTime with pipeline'() {
448448
given:
449449
AggregateOperation operation = new AggregateOperation<Document>(getNamespace(), [

0 commit comments

Comments
 (0)