Skip to content

Commit

Permalink
Fix test data failure. (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
balhoff committed Jun 22, 2022
1 parent 7c4ff13 commit f1771ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void testLookupStringCls2() throws Exception {
public void testLookupGeneProductCls() throws Exception {
Logger.getLogger(GolrExternalLookupService.class).setLevel(Level.DEBUG);
GolrExternalLookupService s = new GolrExternalLookupService(golrUrl, handler);
IRI gp_iri = handler.getIRI("UniProtKB:P32241-1");
IRI gp_iri = handler.getIRI("UniProtKB:P32241-2");
List<LookupEntry> lookup = s.lookup(gp_iri);
assertEquals(1, lookup.size());
LookupEntry e = lookup.get(0);
Expand Down Expand Up @@ -172,7 +172,7 @@ protected void logRequest(URI uri) {
ids.add(handler.getIRI("SGD:S000004529"));
ids.add(handler.getIRI("CHEBI:33695"));
ids.add(handler.getIRI("ComplexPortal:CPX-900"));
ids.add(handler.getIRI("UniProtKB:P32241-1"));
ids.add(handler.getIRI("UniProtKB:P32241-2"));
ids.add(handler.getIRI("GO:0003700"));

Map<IRI, List<LookupEntry>> lookups = s.lookupBatch(ids);
Expand Down

0 comments on commit f1771ae

Please sign in to comment.