summaryrefslogtreecommitdiff
path: root/test/test_nquads_w3c.py
diff options
context:
space:
mode:
authorNatanael Arndt <arndtn@gmail.com>2021-03-01 16:43:50 +0100
committerIwan Aucamp <aucampia@gmail.com>2021-10-18 21:49:21 +0200
commite3a16bda50e7f04bff8e9bedd59e31df51df9ac9 (patch)
tree92405663e4ed9abf17d6dba4f896fb255602936c /test/test_nquads_w3c.py
parentb04b7fd5fe297e2e0f9c0f17960061f563000291 (diff)
downloadrdflib-e3a16bda50e7f04bff8e9bedd59e31df51df9ac9.tar.gz
Fix generation of w3c tests
Diffstat (limited to 'test/test_nquads_w3c.py')
-rw-r--r--test/test_nquads_w3c.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_nquads_w3c.py b/test/test_nquads_w3c.py
index 6c109737..bde1f4e9 100644
--- a/test/test_nquads_w3c.py
+++ b/test/test_nquads_w3c.py
@@ -32,8 +32,9 @@ def test_nquads(tests=None):
break
else:
continue
-
- t()
+ test_method = t[0]
+ test_arguments = t[1]
+ test_method(test_arguments)
if __name__ == "__main__":