Skip to content

Commit 8066921

Browse files
authored
Resolve unintended sync test skipping. (#1600)
JAVA-5718
1 parent 355c6ea commit 8066921

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTestModifications.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,8 @@ public TestApplicator skipNoncompliant(final String reason) {
303303
* @param reason reason for skipping the test
304304
*/
305305
public TestApplicator skipNoncompliantReactive(final String reason) {
306-
return new TestApplicator(this, reason, SKIP);
306+
return new TestApplicator(this, reason, SKIP)
307+
.when(this::isReactive);
307308
}
308309

309310
/**

0 commit comments

Comments
 (0)