Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Zixuan Liu <[email protected]>
  • Loading branch information
nodece committed Dec 25, 2024
1 parent e85e6ad commit a834115
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.apache.pulsar.common.naming.TopicName;
import org.apache.pulsar.tests.integration.docker.ContainerExecResult;
import org.apache.pulsar.tests.integration.suites.PulsarCliTestSuite;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

Expand All @@ -35,7 +36,7 @@ public void before() throws Exception {
super.before();
}

@BeforeClass(alwaysRun = true)
@AfterClass(alwaysRun = true)
@Override
public void after() throws Exception {
super.after();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.apache.pulsar.tests.integration.docker.ContainerExecResult;
import org.apache.pulsar.tests.integration.suites.PulsarCliTestSuite;
import org.awaitility.Awaitility;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

Expand All @@ -35,7 +36,7 @@ public void before() throws Exception {
super.before();
}

@BeforeClass(alwaysRun = true)
@AfterClass(alwaysRun = true)
@Override
public void after() throws Exception {
super.after();
Expand Down

0 comments on commit a834115

Please sign in to comment.