We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8070af5 commit 661a508Copy full SHA for 661a508
1 file changed
testsuites/rio/src/main/java/org/eclipse/rdf4j/rio/RDFWriterTest.java
@@ -1715,6 +1715,9 @@ public void testOneCollectionWithType() throws Exception {
1715
Model parsedOutput = new LinkedHashModel();
1716
rdfParser.setRDFHandler(new StatementCollector(parsedOutput));
1717
rdfParser.parse(inputReader, "");
1718
+ // ignore rdf:List
1719
+ input.remove(null, RDF.TYPE, RDF.LIST);
1720
+ parsedOutput.remove(null, RDF.TYPE, RDF.LIST);
1721
assertSameModel(input, parsedOutput);
1722
}
1723
0 commit comments