Skip to content

Commit

Permalink
fixed ArtifactHandlerTest after commit d5b0f4c
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibor17 authored and rfscholte committed Aug 6, 2019
1 parent 0197248 commit 297a6b7
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -42,7 +42,7 @@ public void testAptConsistency()
{
String[] cols = line.split( "\\|\\|" );
String[] expected =
new String[] { "", "type", "extension", "packaging", "classifier", "language", "added to classpath",
new String[] { "", "type", "classifier", "extension", "packaging", "language", "added to classpath",
"includesDependencies", "" };

int i = 0;
Expand All @@ -56,9 +56,9 @@ else if ( line.startsWith( "|" ) )
String[] cols = line.split( "\\|" );

String type = trimApt( cols[1] );
String extension = trimApt( cols[2], type );
String packaging = trimApt( cols[3], type );
String classifier = trimApt( cols[4] );
String classifier = trimApt( cols[2] );
String extension = trimApt( cols[3], type );
String packaging = trimApt( cols[4], type );
String language = trimApt( cols[5] );
String addedToClasspath = trimApt( cols[6] );
String includesDependencies = trimApt( cols[7] );
Expand Down

0 comments on commit 297a6b7

Please sign in to comment.