diff --git a/src/test/java/org/patinanetwork/codebloom/api/ApiControllerTest.java b/src/test/java/org/patinanetwork/codebloom/api/ApiControllerTest.java index 842321417..6c35d5dd4 100644 --- a/src/test/java/org/patinanetwork/codebloom/api/ApiControllerTest.java +++ b/src/test/java/org/patinanetwork/codebloom/api/ApiControllerTest.java @@ -53,6 +53,6 @@ void testBaseApiRoute() { assertTrue(serverMetadataObject.getName() != null, "Testing server name is not null"); List authors = serverMetadataObject.getAuthors(); assertTrue(authors != null, "Testing authors list is not null"); - assertTrue(authors.size() == 6, "Testing length of authors, expected 6."); + assertTrue(authors.size() > 0, "Testing length of authors."); } }