Skip to content

Commit

Permalink
Fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 14, 2023
1 parent b72b1f6 commit e3894a0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testDefaultConfig()

mojoSetup( mojo );

assertNotNull( "Mojo found.", mojo );
assertNotNull( "Mojo not found.", mojo );

assertNotNull( "project null.", mojo.project );

Expand All @@ -69,7 +69,7 @@ public void testInvalidFormatWithSkipExec()

Mojo mojo = lookupMojo( "check", pluginXmlFile );

assertNotNull( "Mojo found.", mojo );
assertNotNull( "Mojo not found.", mojo );

mojoSetup( mojo );

Expand All @@ -94,7 +94,7 @@ public void testNoOutputFile()

Mojo mojo = lookupMojo( "check", pluginXmlFile );

assertNotNull( "Mojo found.", mojo );
assertNotNull( "Mojo not found.", mojo );

mojoSetup( mojo );

Expand All @@ -110,7 +110,7 @@ private void doTestPlainOutputFile( boolean failsOnError )

Mojo mojo = lookupMojo( "check", pluginXmlFile );

assertNotNull( "Mojo found.", mojo );
assertNotNull( "Mojo not found.", mojo );

PluginDescriptor descriptorStub = new PluginDescriptor();
descriptorStub.setGroupId( "org.apache.maven.plugins" );
Expand Down Expand Up @@ -150,7 +150,7 @@ public void testNoFail()

Mojo mojo = lookupMojo( "check", pluginXmlFile );

assertNotNull( "Mojo found.", mojo );
assertNotNull( "Mojo not found.", mojo );

mojoSetup( mojo );

Expand Down

0 comments on commit e3894a0

Please sign in to comment.