Skip to content

Commit 661a508

Browse files
author
James Leigh
committed
Issue #889: Ignore typeof rdf:List check in test
Signed-off-by: James Leigh <james.leigh@ontotext.com>
1 parent 8070af5 commit 661a508

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

testsuites/rio/src/main/java/org/eclipse/rdf4j/rio/RDFWriterTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,6 +1715,9 @@ public void testOneCollectionWithType() throws Exception {
17151715
Model parsedOutput = new LinkedHashModel();
17161716
rdfParser.setRDFHandler(new StatementCollector(parsedOutput));
17171717
rdfParser.parse(inputReader, "");
1718+
// ignore rdf:List
1719+
input.remove(null, RDF.TYPE, RDF.LIST);
1720+
parsedOutput.remove(null, RDF.TYPE, RDF.LIST);
17181721
assertSameModel(input, parsedOutput);
17191722
}
17201723

0 commit comments

Comments
 (0)