use fest assert to prevent issues with collection types

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1489848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-06-05 13:18:47 +00:00
parent c2b4b72b3d
commit a89f84536f
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public abstract class AbstractMetadataRepositoryTest
public void testGetNamespaceOnly()
throws Exception
{
assertEquals( Collections.emptyList(), repository.getRootNamespaces( TEST_REPO_ID ) );
Assertions.assertThat( repository.getRootNamespaces( TEST_REPO_ID ) ).isNotNull().isEmpty();
repository.updateNamespace( TEST_REPO_ID, TEST_NAMESPACE );