Change tests to not use keyword aliases in context
authorMarkus Lanthaler <mark_lanthaler@gmx.net>
Sun, 01 Apr 2012 19:54:51 +0800
changeset 445 29d68098da10
parent 444 335f4e626911
child 446 ac879566d928
Change tests to not use keyword aliases in context

This addresses #93.
test-suite/tests/compact-0008-context.jsonld
test-suite/tests/compact-0008-out.jsonld
--- a/test-suite/tests/compact-0008-context.jsonld	Sun Apr 01 02:24:08 2012 +0800
+++ b/test-suite/tests/compact-0008-context.jsonld	Sun Apr 01 19:54:51 2012 +0800
@@ -1,8 +1,8 @@
 {
   "@context": {
-    "http://example.org/test#property1": {"@type": "uri"},
-    "http://example.org/test#property2": {"@type": "uri"},
-    "http://example.org/test#property3": {"@type": "uri"},
+    "http://example.org/test#property1": {"@type": "@id"},
+    "http://example.org/test#property2": {"@type": "@id"},
+    "http://example.org/test#property3": {"@type": "@id"},
     "uri": "@id"
   }
-}
\ No newline at end of file
+}
--- a/test-suite/tests/compact-0008-out.jsonld	Sun Apr 01 02:24:08 2012 +0800
+++ b/test-suite/tests/compact-0008-out.jsonld	Sun Apr 01 19:54:51 2012 +0800
@@ -1,8 +1,8 @@
 {
   "@context": {
-    "http://example.org/test#property1": {"@type": "uri"},
-    "http://example.org/test#property2": {"@type": "uri"},
-    "http://example.org/test#property3": {"@type": "uri"},
+    "http://example.org/test#property1": {"@type": "@id"},
+    "http://example.org/test#property2": {"@type": "@id"},
+    "http://example.org/test#property3": {"@type": "@id"},
     "uri": "@id"
   },
   "http://example.org/test#property1": {
@@ -12,4 +12,4 @@
   "http://example.org/test#property2": "http://example.org/test#example3",
   "http://example.org/test#property3": "http://example.org/test#example4",
   "uri": "http://example.org/test#example1"
-}
\ No newline at end of file
+}