Skip to content

Commit 68b5649

Browse files
committed
fix VO endpoint findings test
1 parent c2770c5 commit 68b5649

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/firefly/test/edu/caltech/ipac/firefly/util/VoUtilsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ public class VoUtilsTest {
1616
@Test
1717
public void testRegistryEndPoint(){
1818
endpoints = VoRegistryUtil.getEndpoints("ConeSearch", "iphas");
19-
Assert.assertEquals(endpoints.size(), 15);
19+
Assert.assertTrue("No endpoints found!" ,endpoints.size()>0);
2020
}
2121
@Test
2222
public void testAnotherRegistryEndPoint(){
2323
endpoints = VoRegistryUtil.getEndpoints("ConeSearch", "spitzer");
24-
Assert.assertEquals(endpoints.size(), 783);
24+
Assert.assertTrue("No endpoints found!" ,endpoints.size()>0);
2525
}
2626
public static void main(String[] args) {
2727

0 commit comments

Comments
 (0)