File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
impl/maven-impl/src/test/java/org/apache/maven/impl Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ void readFromInputStreamParsesPluginDescriptorCorrectly() {
7979 void testParsePlugin () {
8080 assertEquals (
8181 "Sample Plugin" ,
82- defaultPluginXmlFactory .read (XmlReaderRequest .builder ()
82+ defaultPluginXmlFactory
83+ .read (XmlReaderRequest .builder ()
8384 .reader (new StringReader (SAMPLE_PLUGIN_XML ))
8485 .build ())
8586 .getName ());
@@ -91,7 +92,9 @@ void readFromPathParsesPluginDescriptorCorrectly() throws Exception {
9192 Files .write (xmlFile , SAMPLE_PLUGIN_XML .getBytes ());
9293 assertEquals (
9394 "Sample Plugin" ,
94- defaultPluginXmlFactory .read (XmlReaderRequest .builder ().path (xmlFile ).build ()).getName ());
95+ defaultPluginXmlFactory
96+ .read (XmlReaderRequest .builder ().path (xmlFile ).build ())
97+ .getName ());
9598 }
9699
97100 @ Test
You can’t perform that action at this time.
0 commit comments