We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f4be2 commit 5d04eebCopy full SHA for 5d04eeb
1 file changed
microsphere-java-core/src/test/java/io/microsphere/metadata/ConfigurationPropertiesJSONReaderTest.java
@@ -49,9 +49,9 @@ void setUp() {
49
@Test
50
void testLoad() throws Throwable {
51
ClassLoader classLoader = getClassLoader(getClass());
52
- try (InputStream inputStream = classLoader.getResourceAsStream("META-INF/microsphere/configuration-properties.json")) {
+ try (InputStream inputStream = classLoader.getResourceAsStream(JSON_RESOURCE_NAME)) {
53
List<ConfigurationProperty> configurationProperties = reader.read(inputStream);
54
- assertEquals(6, configurationProperties.size());
+ assertEquals(7, configurationProperties.size());
55
}
56
57
0 commit comments