Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lhotari committed Oct 10, 2024
1 parent 84c32c2 commit 73c97c8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
import org.assertj.core.groups.Tuple;
import org.awaitility.Awaitility;
import org.testng.Assert;
import org.testng.SkipException;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.DataProvider;
Expand Down Expand Up @@ -245,6 +246,9 @@ public Object[][] classicAndSubscriptionType() {
@Test(dataProvider = "classicAndSubscriptionType")
public void testConsumerStatsOutput(boolean classicDispatchers, SubscriptionType subscriptionType)
throws Exception {
if (this instanceof AuthenticatedConsumerStatsTest) {
throw new SkipException("Skip test for AuthenticatedConsumerStatsTest");
}
conf.setSubscriptionSharedUseClassicPersistentImplementation(classicDispatchers);
conf.setSubscriptionKeySharedUseClassicPersistentImplementation(classicDispatchers);
Set<String> expectedFields = Sets.newHashSet(
Expand Down

0 comments on commit 73c97c8

Please sign in to comment.