Fixed tests root class

This commit is contained in:
Luca Frosini 2022-07-25 11:26:11 +02:00
parent 31c19f3c49
commit 66506cb5e5
1 changed files with 1 additions and 11 deletions

View File

@ -69,17 +69,7 @@ public class ContextTest {
throw new RuntimeException(e);
}
Properties registryProperties = new Properties();
input = ContextTest.class.getClassLoader().getResourceAsStream(REGISTRY_PROPERTIES_FILENAME);
try {
// load the properties file
registryProperties.load(input);
} catch (IOException e) {
throw new RuntimeException(e);
}
RESOURCE_REGISTRY_URL = registryProperties.getProperty(RESOURCE_REGISTRY_URL_PROPERTY);
RESOURCE_REGISTRY_URL = properties.getProperty(RESOURCE_REGISTRY_URL_PROPERTY);
}