Skip to content

Commit aa29ae6

Browse files
committed
fix wrong provider name in the pluggability test
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
1 parent 20875c5 commit aa29ae6

File tree

3 files changed

+7
-7
lines changed
  • tck
    • tck-dist-eftl/src/main/bin
    • tck-tests-pluggability/src/main/java/ee/jakarta/tck/jsonp/pluggability/jsonprovidertests

3 files changed

+7
-7
lines changed

tck/tck-dist-eftl/src/main/bin/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,6 @@
8181
<version>\${jsonp-api.version}</version>
8282
<scope>test</scope>
8383
</dependency>
84-
<dependency>
85-
<groupId>\${jsonp-impl.groupId}</groupId>
86-
<artifactId>\${jsonp-impl.artifactId}</artifactId>
87-
<version>\${jsonp-impl.version}</version>
88-
<scope>test</scope>
89-
</dependency>
9084
<dependency>
9185
<groupId>org.junit.jupiter</groupId>
9286
<artifactId>junit-jupiter-api</artifactId>

tck/tck-dist-eftl/src/main/bin/tck-tests/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
<artifactId>tck-tests</artifactId>
3333

3434
<dependencies>
35+
<dependency>
36+
<groupId>\${jsonp-impl.groupId}</groupId>
37+
<artifactId>\${jsonp-impl.artifactId}</artifactId>
38+
<version>\${jsonp-impl.version}</version>
39+
<scope>test</scope>
40+
</dependency>
3541
<dependency>
3642
<groupId>jakarta.json</groupId>
3743
<artifactId>jakarta.json-tck-tests</artifactId>

tck/tck-tests-pluggability/src/main/java/ee/jakarta/tck/jsonp/pluggability/jsonprovidertests/ClientTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
public class ClientTests {
5757

58-
private static final String MY_JSONPROVIDER_CLASS = "MyJsonProvider";
58+
private static final String MY_JSONPROVIDER_CLASS = "ee.jakarta.tck.jsonp.provider.MyJsonProvider";
5959
private static final Logger LOGGER = Logger.getLogger(ClientTests.class.getName());
6060

6161
private String providerPath = null;

0 commit comments

Comments
 (0)