summaryrefslogtreecommitdiff
path: root/test/test_issue160.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_issue160.py')
-rw-r--r--test/test_issue160.py4
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"]]