Skip to content

Commit 5ae8ddd

Browse files
committed
Some clean-ups in the tests
1 parent c026daa commit 5ae8ddd

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

lib/rdf-fusion/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ TBD
77
Here is an example of using RdfFusion:
88
```rust
99
use std::error::Error;
10-
use graphfusion::store::Store;
11-
use graphfusion::model::*;
12-
use graphfusion::sparql::QueryResults;
10+
use rdf_fusion::store::Store;
11+
use rdf_fusion::model::*;
12+
use rdf_fusion::sparql::QueryResults;
1313
use futures::StreamExt;
1414

1515
#[tokio::main]

testsuite/tests/sparql.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ async fn sparql10_w3c_query_syntax_testsuite() -> Result<()> {
1616
#[tokio::test]
1717
async fn sparql10_w3c_query_evaluation_testsuite() -> Result<()> {
1818
check_testsuite("https://w3c.github.io/rdf-tests/sparql/sparql10/manifest-evaluation.ttl", &[
19+
// Testing equality of illegal literals ("xyz"^^<http://www.w3.org/2001/XMLSchema#integer>)
20+
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-07",
1921
//Simple literal vs xsd:string. We apply RDF 1.1
20-
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/distinct/manifest#distinct-2",
2122
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-08",
2223
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-10",
2324
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-11",
2425
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#open-eq-12",
25-
//DATATYPE("foo"@en) returns rdf:langString in RDF 1.1
26-
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/expr-builtin/manifest#dawg-datatype-2",
2726
// We use XSD 1.1 equality on dates
2827
"http://www.w3.org/2001/sw/DataAccess/tests/data-r2/open-world/manifest#date-2",
2928
// We choose to simplify first the nested group patterns in OPTIONAL

0 commit comments

Comments
 (0)