mirror of https://github.com/apache/maven.git
Fix ugly labels caused by b804f9c6fa
When the test method name is solely 'test()' the output is: <issue> <className>.() Consistently modified a few tests to use the generic name 'testit()'.
This commit is contained in:
parent
b804f9c6fa
commit
424691b80e
|
@ -31,7 +31,7 @@ public class MavenITmng5389LifecycleParticipantAfterSessionEnd
|
|||
super( "[3.2.1,)" );
|
||||
}
|
||||
|
||||
public void test()
|
||||
public void testit()
|
||||
throws Exception
|
||||
{
|
||||
File testDir =
|
||||
|
|
|
@ -45,7 +45,7 @@ public class MavenITmng5669ReadPomsOnce
|
|||
super( "[3.7.0,)" );
|
||||
}
|
||||
|
||||
public void test()
|
||||
public void testit()
|
||||
throws Exception
|
||||
{
|
||||
// prepare JavaAgent
|
||||
|
|
|
@ -32,7 +32,7 @@ public class MavenITmng5768CliExecutionIdTest
|
|||
super( "(3.2.5,)" );
|
||||
}
|
||||
|
||||
public void test()
|
||||
public void testit()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-5768-cli-execution-id" );
|
||||
|
|
Loading…
Reference in New Issue