diff --git a/tests/fromRdf-manifest.html b/tests/fromRdf-manifest.html index 1ab97678..9c103e9d 100644 --- a/tests/fromRdf-manifest.html +++ b/tests/fromRdf-manifest.html @@ -1421,11 +1421,11 @@

List of lists
input
- fromRdf/li02-in.nq + fromRdf/li03-in.nq
expect
- fromRdf/li02-out.jsonld + fromRdf/li03-out.jsonld
Options
diff --git a/tests/fromRdf/0027-out.jsonld b/tests/fromRdf/0027-out.jsonld index f03c97a0..dde170cf 100644 --- a/tests/fromRdf/0027-out.jsonld +++ b/tests/fromRdf/0027-out.jsonld @@ -1,56 +1,45 @@ -{ - "@graph": [ - { - "@id": "http://example.com/boolean-native", - "http://example.com/example": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#boolean", - "@value": true - }, - { - "@type": "http://www.w3.org/2001/XMLSchema#boolean", - "@value": false - } - ] - }, - { - "@id": "http://example.com/boolean-object", - "http://example.com/example": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#boolean", - "@value": "True" - }, - { - "@type": "http://www.w3.org/2001/XMLSchema#boolean", - "@value": "False" - } - ] - }, - { - "@id": "http://example.com/number-native", - "http://example.com/example": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": 1 - } - ] - }, - { - "@id": "http://example.com/number-object", - "http://example.com/example": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#double", - "@value": "0.1e999999999999999" - }, - { - "@type": "http://www.w3.org/2001/XMLSchema#double", - "@value": "+INF" - }, - { - "@type": "http://www.w3.org/2001/XMLSchema#double", - "@value": "-INF" - } - ] - } - ] -} +[ + { + "@id": "http://example.com/boolean-native", + "http://example.com/example": [ + {"@value": true}, + {"@value": false} + ] + }, + { + "@id": "http://example.com/boolean-object", + "http://example.com/example": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "True" + }, + { + "@type": "http://www.w3.org/2001/XMLSchema#boolean", + "@value": "False" + } + ] + }, + { + "@id": "http://example.com/number-native", + "http://example.com/example": [ + {"@value": 1} + ] + }, + { + "@id": "http://example.com/number-object", + "http://example.com/example": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#double", + "@value": "0.1e999999999999999" + }, + { + "@type": "http://www.w3.org/2001/XMLSchema#double", + "@value": "+INF" + }, + { + "@type": "http://www.w3.org/2001/XMLSchema#double", + "@value": "-INF" + } + ] + } +]