Fixing misspellings in test names

This commit is contained in:
August Shi 2016-05-25 14:12:52 -05:00 committed by Hervé Boutemy
parent 985b5985f3
commit e6217a4555
2 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@ public class DefaultMirrorSelectorTest
extends PlexusTestCase extends PlexusTestCase
{ {
public void testMirrorWithMirroOfPatternContainingANegationIsNotSelected() public void testMirrorWithMirrorOfPatternContainingANegationIsNotSelected()
{ {
ArtifactRepository repository = new DefaultArtifactRepository( "snapshots.repo", "http://whatever", null ); ArtifactRepository repository = new DefaultArtifactRepository( "snapshots.repo", "http://whatever", null );
String pattern = "external:*, !snapshots.repo"; String pattern = "external:*, !snapshots.repo";

View File

@ -221,16 +221,16 @@ public class FileSizeFormatTest {
} }
@Test( expected = IllegalArgumentException.class ) @Test( expected = IllegalArgumentException.class )
public void testNegativeProgessedSize() public void testNegativeProgressedSize()
{ {
FileSizeFormat format = new FileSizeFormat( Locale.ENGLISH ); FileSizeFormat format = new FileSizeFormat( Locale.ENGLISH );
long negativeProgessedSize = -100L; long negativeProgressedSize = -100L;
format.formatProgress( negativeProgessedSize, 10L ); format.formatProgress( negativeProgressedSize, 10L );
} }
@Test( expected = IllegalArgumentException.class ) @Test( expected = IllegalArgumentException.class )
public void testNegativeProgessedSizeBiggerThanSize() public void testNegativeProgressedSizeBiggerThanSize()
{ {
FileSizeFormat format = new FileSizeFormat( Locale.ENGLISH ); FileSizeFormat format = new FileSizeFormat( Locale.ENGLISH );