JAL-4073 update tests
[jalview.git] / test / jalview / ws / dbsources / PfamFullTest.java
index fd59ef3..d03057d 100644 (file)
@@ -38,7 +38,7 @@ public class PfamFullTest
   @Test(groups = "Functional")
   public void testGetURL()
   {
-    String path = "www.ebi.ac.uk/interpro/wwwapi/entry/pfam/ABC/?annotation=alignment:full&download";
+    String path = "www.ebi.ac.uk/interpro/api/entry/pfam/ABC/?annotation=alignment:full";
 
     // with default value for domain
     String url = new PfamFull().getURL(" abc ");
@@ -46,7 +46,7 @@ public class PfamFullTest
 
     // with override in properties
     Cache.setProperty(Pfam.PFAM_BASEURL_KEY,
-            "http://www.ebi.ac.uk/interpro/wwwapi/entry/pfam/$PFAMID$/?annotation=alignment:$ALTYPE$&download");
+            "http://www.ebi.ac.uk/interpro/api/entry/pfam/$PFAMID$/?annotation=alignment:$ALTYPE$");
     url = new PfamFull().getURL(" abc ");
     assertEquals(url, "http://" + path);
   }