Match up tests with manifest.
--- a/test-suite/tests/compact-0051-in.jsonld Fri Feb 15 14:16:26 2013 -0500
+++ b/test-suite/tests/compact-0051-in.jsonld Fri Feb 15 14:41:22 2013 -0500
@@ -1,3 +1,5 @@
{
- "@list": [1]
+ "http://example.org/term": {
+ "@list": [1]
+ }
}
--- a/test-suite/tests/compact-0051-out.jsonld Fri Feb 15 14:16:26 2013 -0500
+++ b/test-suite/tests/compact-0051-out.jsonld Fri Feb 15 14:41:22 2013 -0500
@@ -1,1 +1,5 @@
-{}
\ No newline at end of file
+{
+ "http://example.org/term": {
+ "@list": [1]
+ }
+}
--- a/test-suite/tests/compact-0052-context.jsonld Fri Feb 15 14:16:26 2013 -0500
+++ b/test-suite/tests/compact-0052-context.jsonld Fri Feb 15 14:41:22 2013 -0500
@@ -1,5 +1,6 @@
{
"@context": {
- "graph": "@graph"
+ "graph": "@graph",
+ "term": "http://example.org/term"
}
}
--- a/test-suite/tests/compact-0052-in.jsonld Fri Feb 15 14:16:26 2013 -0500
+++ b/test-suite/tests/compact-0052-in.jsonld Fri Feb 15 14:41:22 2013 -0500
@@ -1,8 +1,18 @@
{
"@context": {
- "graph": "@graph"
+ "graph": "@graph",
+ "term": "http://example.org/term"
},
- "graph": {
- "@list": [1]
- }
+ "graph": [
+ {
+ "term": {
+ "@list": [1]
+ }
+ },
+ {
+ "term": {
+ "@list": [2]
+ }
+ }
+ ]
}
--- a/test-suite/tests/compact-0052-out.jsonld Fri Feb 15 14:16:26 2013 -0500
+++ b/test-suite/tests/compact-0052-out.jsonld Fri Feb 15 14:41:22 2013 -0500
@@ -1,5 +1,18 @@
{
"@context": {
- "graph": "@graph"
- }
+ "graph": "@graph",
+ "term": "http://example.org/term"
+ },
+ "graph": [
+ {
+ "term": {
+ "@list": [1]
+ }
+ },
+ {
+ "term": {
+ "@list": [2]
+ }
+ }
+ ]
}