summaryrefslogtreecommitdiff
path: root/test/test_graph/test_graph_context.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_graph/test_graph_context.py')
-rw-r--r--test/test_graph/test_graph_context.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_graph/test_graph_context.py b/test/test_graph/test_graph_context.py
index 9e0b712a..f6ef5c3e 100644
--- a/test/test_graph/test_graph_context.py
+++ b/test/test_graph/test_graph_context.py
@@ -7,6 +7,7 @@ from tempfile import mkdtemp, mkstemp
import pytest
from rdflib import BNode, ConjunctiveGraph, Graph, URIRef, plugin
+from rdflib.store import Store
class ContextTestCase(unittest.TestCase):
@@ -367,7 +368,7 @@ if __name__ == "__main__":
pluginname = sys.argv[1]
tests = 0
-for s in plugin.plugins(pluginname, plugin.Store):
+for s in plugin.plugins(pluginname, Store):
if s.name in (
"default",
"Memory",