Skip to content

Commit

Permalink
Resolve unintended sync test skipping. (#1600)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabanin authored Jan 9, 2025
1 parent 355c6ea commit 8066921
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ public TestApplicator skipNoncompliant(final String reason) {
* @param reason reason for skipping the test
*/
public TestApplicator skipNoncompliantReactive(final String reason) {
return new TestApplicator(this, reason, SKIP);
return new TestApplicator(this, reason, SKIP)
.when(this::isReactive);
}

/**
Expand Down

0 comments on commit 8066921

Please sign in to comment.