aboutsummaryrefslogtreecommitdiffstats
path: root/test/validate/bad-datatype-property.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'test/validate/bad-datatype-property.ttl')
-rw-r--r--test/validate/bad-datatype-property.ttl11
1 files changed, 6 insertions, 5 deletions
diff --git a/test/validate/bad-datatype-property.ttl b/test/validate/bad-datatype-property.ttl
index a3e993f3..3c2f7a9f 100644
--- a/test/validate/bad-datatype-property.ttl
+++ b/test/validate/bad-datatype-property.ttl
@@ -3,16 +3,17 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-eg:value
- rdfs:label "value" ;
- a owl:DatatypeProperty .
+eg:name
+ a owl:DatatypeProperty ;
+ rdfs:label "name" .
eg:Thing
- a rdfs:Class .
+ a rdfs:Class ;
+ rdfs:label "Thing" .
eg:s1
a eg:Thing .
eg:s2
- eg:value eg:s1 .
+ eg:name eg:s1 .