Skip to content

Commit cda945e

Browse files
committed
NO-JIRA: OSGI test is not happy with JUnit 5.
1 parent beccbf7 commit cda945e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

osgi-itests/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@
1616
<artifactId>rosette-api</artifactId>
1717
<version>1.23.1-SNAPSHOT</version>
1818
</dependency>
19-
<dependency>
20-
<groupId>org.junit.jupiter</groupId>
21-
<artifactId>junit-jupiter-api</artifactId>
22-
<version>${junit.version}</version>
23-
<scope>provided</scope>
24-
</dependency>
2519

2620
<!-- The goal of this test is to make sure rosette-api resolves successfully in OSGi with given dependencies. -->
2721
<!-- A failure in this test indicates changes in the minimum runtime requirements of the bundle. -->

osgi-itests/src/main/java/com/basistech/rosette/osgi/it/RosetteApiOsgiTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
package com.basistech.rosette.osgi.it;
1818

1919
import com.basistech.rosette.api.HttpRosetteAPI;
20-
import org.junit.jupiter.api.Test;
20+
import org.junit.Test;
2121

22-
import static org.junit.jupiter.api.Assertions.assertNotNull;
22+
import static org.junit.Assert.assertNotNull;
2323

2424
@SuppressWarnings("java:S5960") // This is a test class.
2525
public class RosetteApiOsgiTest {

0 commit comments

Comments
 (0)