Skip to content

Commit 5d04eeb

Browse files
committed
Update ConfigurationPropertiesJSONReaderTest.java
1 parent 44f4be2 commit 5d04eeb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

microsphere-java-core/src/test/java/io/microsphere/metadata/ConfigurationPropertiesJSONReaderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ void setUp() {
4949
@Test
5050
void testLoad() throws Throwable {
5151
ClassLoader classLoader = getClassLoader(getClass());
52-
try (InputStream inputStream = classLoader.getResourceAsStream("META-INF/microsphere/configuration-properties.json")) {
52+
try (InputStream inputStream = classLoader.getResourceAsStream(JSON_RESOURCE_NAME)) {
5353
List<ConfigurationProperty> configurationProperties = reader.read(inputStream);
54-
assertEquals(6, configurationProperties.size());
54+
assertEquals(7, configurationProperties.size());
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)