Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrated the various test_*_w3c.py test files into test/test_w3c_spec/ #1904

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 2 additions & 4 deletions test/test_graph/test_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,14 +291,12 @@ def test_guess_format_for_parse(make_graph: GraphFactory):
# RDF/XML
graph.parse(
os.path.join(
TEST_DATA_DIR, "suites", "w3c", "rdfxml", "datatypes", "test001.rdf"
TEST_DATA_DIR, "suites", "w3c", "rdf-xml", "datatypes", "test001.rdf"
)
) # XML
# bad filename but set format
graph.parse(
os.path.join(
TEST_DATA_DIR, "suites", "w3c", "rdfxml", "datatypes", "test001.borked"
),
os.path.join(TEST_DATA_DIR, "w3c-rdfxml-test001.borked"),
format="xml",
)

Expand Down