Skip to content

Commit 5bf23da

Browse files
committed
test: fix UT failed
1 parent baa76a2 commit 5bf23da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugin/datasource/src/test/java/com/alibaba/nacos/plugin/datasource/MapperManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void testLoadInitial() throws NoSuchFieldException, IllegalAccessException {
4545
Field declaredField = mapperManagerClass.getDeclaredField("MAPPER_SPI_MAP");
4646
declaredField.setAccessible(true);
4747
Map<String, Map<String, Mapper>> map = (Map<String, Map<String, Mapper>>) declaredField.get(instance);
48-
assertEquals(2, map.size());
48+
assertEquals(3, map.size());
4949
}
5050

5151
@Test

0 commit comments

Comments
 (0)