diff options
author | Nicholas Car <nicholas.car@surroundaustralia.com> | 2021-04-25 11:45:59 +1000 |
---|---|---|
committer | Nicholas Car <nicholas.car@surroundaustralia.com> | 2021-04-25 11:45:59 +1000 |
commit | 4164d8319a0685b461b00ac282657b63684fbc64 (patch) | |
tree | 38ba9da8a77695cccdec59052c313382c0ae65ae /test/test_issue160.py | |
parent | 57e180b4ca1f074c3ab08ff6ff8ef09ed143de58 (diff) | |
download | rdflib-docco_clean.tar.gz |
fix tests using XML data since Turtle now defaultdocco_clean
Diffstat (limited to 'test/test_issue160.py')
-rw-r--r-- | test/test_issue160.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_issue160.py b/test/test_issue160.py index b3c7b422..67f56d83 100644 --- a/test/test_issue160.py +++ b/test/test_issue160.py @@ -52,9 +52,9 @@ class CollectionTest(TestCase): # Fails: y a foo:Wrapper, foo:wraps x; x a rdf:List, a foo:Other ; target1 = ConjunctiveGraph() - target1.parse(data=target1xml) + target1.parse(data=target1xml, format="xml") target2 = ConjunctiveGraph() - target2.parse(data=target2xml) + target2.parse(data=target2xml, format="xml") g = ConjunctiveGraph() bits = [ex["a"], ex["b"], ex["c"]] |