You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/08/05 21:38:27 UTC

[maven] branch master updated: fixed ArtifactHandlerTest after commit d5b0f4ce

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

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new 6c5be9c  fixed ArtifactHandlerTest after commit d5b0f4ce
6c5be9c is described below

commit 6c5be9ce2682d3b037b3074a116dd63ab4415ebc
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] );