Skip to content

Commit 71557dc

Browse files
rubensworksgkellogg
authored andcommitted
Fix test 0304 incorrectly considering RDF/XML
The test expected dc:title to be defined using RDF/XML. However, RDFa parsers are not expected to handle RDF/XML.
1 parent 9ea81cb commit 71557dc

3 files changed

Lines changed: 1 addition & 4 deletions

File tree

test-cases/rdfa1.0/svg/0304.sparql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
ASK WHERE {
2-
<http://example.net/> <http://purl.org/dc/terms/title> "Test 0304" .
32
<http://example.net/> <http://purl.org/dc/terms/description> "A yellow rectangle with sharp corners." .
43
}
54

test-cases/rdfa1.1/svg/0304.sparql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
ASK WHERE {
2-
<http://example.net/> <http://purl.org/dc/terms/title> "Test 0304" .
32
<http://example.net/> <http://purl.org/dc/terms/description> "A yellow rectangle with sharp corners." .
43
}
54

test-cases/rdfa1.1/svg/0304.ttl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@prefix dcterms: <http://purl.org/dc/terms/> .
22
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
33

4-
<http://example.net/> dcterms:title "Test 0304";
5-
dcterms:description "A yellow rectangle with sharp corners." .
4+
<http://example.net/> dcterms:description "A yellow rectangle with sharp corners." .

0 commit comments

Comments
 (0)