Skip to content

Commit

Permalink
update tests to refelct newer concept matches
Browse files Browse the repository at this point in the history
  • Loading branch information
leinfelder committed Sep 6, 2016
1 parent ae81658 commit d301ce3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void testLookup() {
List<ConceptItem> results;
results = service.getConcepts(text, null, null);
String retConcept = results.get(0).getUri().toString();
assertEquals("http://purl.dataone.org/odo/ECSO_00000011", retConcept);
assertEquals("http://purl.dataone.org/odo/ECSO_00001105", retConcept);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void testLookup() {
results = service.getConcepts(text, null, null);
String retConcept = results.get(0).getUri().toString();
System.out.println("retConcept=" + retConcept);
assertEquals("http://purl.dataone.org/odo/ECSO_00000011", retConcept);
assertEquals("http://purl.dataone.org/odo/ECSO_00000015", retConcept);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
Expand Down

0 comments on commit d301ce3

Please sign in to comment.