We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5362824 commit 02388b6Copy full SHA for 02388b6
1 file changed
src/test/java/eu/europa/ted/eforms/sdk/resource/SdkResourceLoaderTest.java
@@ -22,15 +22,15 @@ static void downloadSdk() throws IOException {
22
23
@Test
24
void testGetResourceAsPath() {
25
- Path path = SdkResourceLoader.getResourceAsPath("1.1.3",
+ Path path = SdkResourceLoader.getResourceAsPath("1.1",
26
SdkConstants.SdkResource.FIELDS_JSON, SDK_ROOT_DIR);
27
28
assertTrue(path.endsWith("fields/fields.json"));
29
}
30
31
32
void testGetResourceAsStream() throws IOException {
33
- InputStream is = SdkResourceLoader.getResourceAsStream("1.1.3",
+ InputStream is = SdkResourceLoader.getResourceAsStream("1.1",
34
SdkConstants.SdkResource.FIELDS, "fields.json", SDK_ROOT_DIR);
35
36
assertTrue(is.read() >= 0);
0 commit comments