Skip to content

Commit

Permalink
依赖关系检查调整
Browse files Browse the repository at this point in the history
  • Loading branch information
qmdx committed Oct 16, 2024
1 parent 659bfdd commit f6b5a9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void test() throws IOException {
String artifactId = $this.s("artifactId").text();
dependenciesMap.put(artifactId, new Dependency(artifactId, $this.s("scope").text(), Boolean.parseBoolean($this.s("optional").text())));
});
Dependency extension = dependenciesMap.get("mybatis-plus-extension");
Dependency extension = dependenciesMap.get("mybatis-plus-spring");
Assertions.assertEquals("compile", extension.getScope());
Assertions.assertFalse(extension.isOptional());
}
Expand Down

0 comments on commit f6b5a9b

Please sign in to comment.