Slightly changed compact-0007 test to make clear that the value is not an IRI
authorMarkus Lanthaler <mark_lanthaler@gmx.net>
Fri, 27 Apr 2012 17:35:44 +0200
changeset 579 ad3418c538e5
parent 578 bd0739ca2d12
child 580 14436483b4bc
Slightly changed compact-0007 test to make clear that the value is not an IRI
test-suite/tests/compact-0007-in.jsonld
test-suite/tests/compact-0007-out.jsonld
--- a/test-suite/tests/compact-0007-in.jsonld	Fri Apr 27 15:20:26 2012 +0200
+++ b/test-suite/tests/compact-0007-in.jsonld	Fri Apr 27 17:35:44 2012 +0200
@@ -18,10 +18,10 @@
       "@id": "http://example.org/test#library",
       "http://example.org/vocab#contains": [{
         "@id": "http://example.org/test#book",
-        "http://example.org/vocab#contains": ["http://example.org/test#chapter"],
+        "http://example.org/vocab#contains": [ "this-is-not-an-IRI" ],
         "http://purl.org/dc/elements/1.1/contributor": ["Writer"],
         "http://purl.org/dc/elements/1.1/title": ["My Book"]
       }]
     }
   ]
-}
\ No newline at end of file
+}
--- a/test-suite/tests/compact-0007-out.jsonld	Fri Apr 27 15:20:26 2012 +0200
+++ b/test-suite/tests/compact-0007-out.jsonld	Fri Apr 27 17:35:44 2012 +0200
@@ -27,8 +27,8 @@
         "@id": "http://example.org/test#book",
         "dc:contributor": "Writer",
         "dc:title": "My Book",
-        "http://example.org/vocab#contains": "http://example.org/test#chapter"
+        "http://example.org/vocab#contains": "this-is-not-an-IRI"
       }
     }
   ]
-}
\ No newline at end of file
+}