mirror of https://github.com/apache/archiva.git
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:
parent
c2b4b72b3d
commit
a89f84536f
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue