]> source.dussan.org Git - archiva.git/commitdiff
[MRM-1640] With the new Fest Assert version, some imports/methods call have to be...
authorOlivier Lamy <olamy@apache.org>
Thu, 5 Jul 2012 13:55:20 +0000 (13:55 +0000)
committerOlivier Lamy <olamy@apache.org>
Thu, 5 Jul 2012 13:55:20 +0000 (13:55 +0000)
Submitted by Adrien Lecharpentier.

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1357608 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/test/java/org/apache/archiva/rest/services/ArtifactContentEntriesTests.java
archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/test/java/org/apache/archiva/rest/services/BrowseServiceTest.java

index 10820f8c9f6e1aae1e01722b49fd7572b98841a1..0e15bedb48069ca2f515dfc79afce540b5146a5a 100644 (file)
@@ -29,7 +29,7 @@ import org.slf4j.LoggerFactory;
 import java.io.File;
 import java.util.List;
 
-import static org.fest.assertions.Assertions.assertThat;
+import static org.fest.assertions.api.Assertions.assertThat;
 
 /**
  * @author Olivier Lamy
index ed70e0bc0ce252a6a03cbe7fc6b44bb34024a00e..4f9c68ab5c41ca002ba5d14cabe371ec5b7dd103 100644 (file)
@@ -27,7 +27,7 @@ import org.apache.archiva.rest.api.model.Entry;
 import org.apache.archiva.rest.api.model.VersionsList;
 import org.apache.archiva.rest.api.services.BrowseService;
 import org.apache.cxf.jaxrs.client.WebClient;
-import org.fest.assertions.api.MapAssert;
+import org.fest.assertions.data.MapEntry;
 import org.junit.Test;
 
 import javax.ws.rs.core.MediaType;
@@ -83,7 +83,7 @@ public class BrowseServiceTest
 
         metadatas = toMap( browseService.getMetadatas( "commons-cli", "commons-cli", "1.0", testRepoId ) );
 
-        assertThat( metadatas ).isNotNull().isNotEmpty().includes( MapAssert.entry( "wine", "bordeaux" ) );
+        assertThat( metadatas ).isNotNull().isNotEmpty().contains( MapEntry.entry( "wine", "bordeaux" ) );
 
         deleteTestRepo( testRepoId );
 
@@ -115,7 +115,7 @@ public class BrowseServiceTest
 
         metadatas = toMap( browseService.getMetadatas( "commons-cli", "commons-cli", "1.0", testRepoId ) );
 
-        assertThat( metadatas ).isNotNull().isNotEmpty().includes( MapAssert.entry( "wine", "bordeaux" ) );
+        assertThat( metadatas ).isNotNull().isNotEmpty().contains( MapEntry.entry( "wine", "bordeaux" ) );
 
         browseService.deleteMetadata( "commons-cli", "commons-cli", "1.0", "wine", testRepoId );