Skip to content

Commit

Permalink
GH-1409: Unnecessary parsing of IRIs every time an RDF parser is used…
Browse files Browse the repository at this point in the history
… (fixed formatting from prev commit)

Signed-off-by: Pavel Mihaylov <pavel@ontotext.com>
  • Loading branch information
Pavel Mihaylov committed May 13, 2019
1 parent e4d1288 commit 97d0ea1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,7 @@ public void test780IRISpace() throws Exception {
assertEquals(1, model.size());
model.filter(null, RDF.TYPE, null)
.objects()
.forEach(obj -> assertEquals("http://purl.bioontology.org/ontology/UATC/ SERINE ",
obj.stringValue()));
.forEach(obj -> assertEquals("http://purl.bioontology.org/ontology/UATC/ SERINE ", obj.stringValue()));
}

@Test
Expand Down

0 comments on commit 97d0ea1

Please sign in to comment.