]> source.dussan.org Git - archiva.git/commitdiff
fix context when know repositoryarchiva-modules/archiva-web/archiva-rest/archiva...
authorOlivier Lamy <olamy@apache.org>
Wed, 21 May 2014 02:09:03 +0000 (12:09 +1000)
committerOlivier Lamy <olamy@apache.org>
Wed, 21 May 2014 02:09:03 +0000 (12:09 +1000)
archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/test/java/org/apache/archiva/rest/services/SearchServiceTest.java

index a3ad4cdcb39225403eb59cec83901472653f42be..a073b2430f6a2ed1d0f572ea4a456e37f37bac83 100644 (file)
@@ -22,13 +22,15 @@ import org.apache.archiva.admin.model.beans.UiConfiguration;
 import org.apache.archiva.maven2.model.Artifact;
 import org.apache.archiva.rest.api.model.SearchRequest;
 import org.apache.archiva.rest.api.services.SearchService;
-import static org.assertj.core.api.Assertions.assertThat;
+import org.assertj.core.api.Assertions;
 import org.junit.Test;
 
 import java.util.Arrays;
 import java.util.Collection;
 import java.util.List;
 
+import static org.assertj.core.api.Assertions.assertThat;
+
 /**
  * @author Olivier Lamy
  */
@@ -199,7 +201,8 @@ public class SearchServiceTest
         assertNotNull( artifacts );
         assertTrue(
             " not 1 results for Bundle Symbolic Name org.apache.karaf.features.command but " + artifacts.size() + ":"
-                + artifacts, artifacts.size() == 1 );
+                + artifacts, artifacts.size() == 1
+        );
 
         deleteTestRepo( testRepoId );
     }
@@ -233,9 +236,10 @@ public class SearchServiceTest
         {
             log.info( "url: {}", artifact.getUrl() );
             String version = artifact.getVersion();
-            assertEquals( "http://localhost:" + port
-                              + "/repository/test-repo/org/apache/karaf/features/org.apache.karaf.features.core/"
-                              + version + "/org.apache.karaf.features.core-" + version + ".jar", artifact.getUrl() );
+            Assertions.assertThat( artifact.getUrl() ) //
+                .isEqualTo( "http://localhost:" + port
+                                + "/repository/test-repo/org/apache/karaf/features/org.apache.karaf.features.core/"
+                                + version + "/org.apache.karaf.features.core-" + version + ".jar" );
 
 
         }