Skip to content

Commit

Permalink
fix GeoRepIntegTest close
Browse files Browse the repository at this point in the history
  • Loading branch information
heesung-sn committed Nov 2, 2024
1 parent e7369a9 commit 6889aaf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public GeoRepIntegTest(PulsarClient clientA, PulsarAdmin adminA, PulsarClient cl

public void close() throws IOException {
clientA.close();
clientB.close();
adminA.close();
adminB.close();
adminB.close();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.testng.annotations.Test;

@Slf4j
public class NonPersistentTopicMessaging extends MessagingBase {
public class NonPersistentTopicMessagingTest extends MessagingBase {

TopicMessaging test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.testng.annotations.Test;

@Slf4j
public class PersistentTopicMessaging extends MessagingBase {
public class PersistentTopicMessagingTest extends MessagingBase {

TopicMessaging test;

Expand Down
11 changes: 5 additions & 6 deletions tests/integration/src/test/resources/pulsar-messaging.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@
<suite name="Pulsar (Messaging) Integration Tests" verbose="2" annotations="JDK">
<test name="messaging-test-suite" preserve-order="true">
<classes>
<class name="org.apache.pulsar.tests.integration.messaging.PersistentTopicMessaging" />
<class name="org.apache.pulsar.tests.integration.messaging.NonPersistentTopicMessaging" />
<class name="org.apache.pulsar.tests.integration.messaging.GeoReplication" />
<class name="org.apache.pulsar.tests.integration.messaging.PersistentTopicMessagingTest" />
<class name="org.apache.pulsar.tests.integration.messaging.NonPersistentTopicMessagingTest" />
<class name="org.apache.pulsar.tests.integration.messaging.GeoReplicationTest" />
<class name="org.apache.pulsar.tests.integration.messaging.DelayMessagingTest" />
<class name="org.apache.pulsar.tests.integration.messaging.ReaderMessaging" />
<class name="org.apache.pulsar.tests.integration.messaging.NonDurableConsumerMessaging" />
<class name="org.apache.pulsar.tests.integration.messaging.ReaderMessagingTest" />
<class name="org.apache.pulsar.tests.integration.messaging.NonDurableConsumerMessagingTest" />
<class name="org.apache.pulsar.tests.integration.messaging.MessagingSmokeTest" />
<class name="org.apache.pulsar.tests.integration.admin.AdminTest" />

<class name="org.apache.pulsar.tests.integration.oxia.OxiaSmokeTest" />
</classes>
</test>
Expand Down

0 comments on commit 6889aaf

Please sign in to comment.