You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/08/24 16:25:32 UTC

[maven] 08/12: fixed ArtifactHandlerTest after commit d5b0f4ce

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MNG-6656
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 297a6b72a18fc97fe139393c7ffbe6900b6ed802
Author: tibordigana <ti...@apache.org>
AuthorDate: Mon Aug 5 23:38:16 2019 +0200

    fixed ArtifactHandlerTest after commit d5b0f4ce
---
 .../org/apache/maven/artifact/handler/ArtifactHandlerTest.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java b/maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java
index ac02e10..69f59fd 100644
--- a/maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java
+++ b/maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java
@@ -42,7 +42,7 @@ public class ArtifactHandlerTest
             {
                 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;
@@ -56,9 +56,9 @@ public class ArtifactHandlerTest
                 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] );