Skip to content

Commit 02388b6

Browse files
SdkResourceLoaderTest: Fix SDK version number in tests
1 parent 5362824 commit 02388b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/eu/europa/ted/eforms/sdk/resource/SdkResourceLoaderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ static void downloadSdk() throws IOException {
2222

2323
@Test
2424
void testGetResourceAsPath() {
25-
Path path = SdkResourceLoader.getResourceAsPath("1.1.3",
25+
Path path = SdkResourceLoader.getResourceAsPath("1.1",
2626
SdkConstants.SdkResource.FIELDS_JSON, SDK_ROOT_DIR);
2727

2828
assertTrue(path.endsWith("fields/fields.json"));
2929
}
3030

3131
@Test
3232
void testGetResourceAsStream() throws IOException {
33-
InputStream is = SdkResourceLoader.getResourceAsStream("1.1.3",
33+
InputStream is = SdkResourceLoader.getResourceAsStream("1.1",
3434
SdkConstants.SdkResource.FIELDS, "fields.json", SDK_ROOT_DIR);
3535

3636
assertTrue(is.read() >= 0);

0 commit comments

Comments
 (0)