Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate junit version in ClientTpcConfigTest and HazelcastOSGiIT te… #26196

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -27,7 +27,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.Assert.assertTrue;

/**
* Needs to run serially because it messes with system properties.
Expand Down
Expand Up @@ -18,8 +18,8 @@

import com.hazelcast.instance.BuildInfoProvider;
import com.hazelcast.test.annotation.QuickTest;
import org.junit.After;
import org.junit.experimental.categories.Category;
import org.junit.jupiter.api.AfterEach;
import org.ops4j.pax.exam.Option;
import org.ops4j.pax.exam.junit.Configuration;
import org.ops4j.pax.exam.junit.ExamReactorStrategy;
Expand Down Expand Up @@ -65,7 +65,7 @@ public Option[] config() {
return options(hzBundle, junitBundles);
}

@AfterEach
@After
public void tearDown() throws Exception {
for (Bundle bundle : bundleContext.getBundles()) {
if ("com.hazelcast".equals(bundle.getSymbolicName())) {
Expand Down