summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Aastrand Grimnes <gromgull@gmail.com>2017-02-03 16:54:44 +0100
committerGunnar Aastrand Grimnes <gromgull@gmail.com>2017-02-03 16:54:44 +0100
commit776b90be0f79fd9b424dd9718b732c96b37b9f2f (patch)
tree2672e6b87ebb071e6c47af5c624dba3c3c5a4423
parent94a437b447bd7f61b8e6acb62e70fa5100776f47 (diff)
downloadrdflib-776b90be0f79fd9b424dd9718b732c96b37b9f2f.tar.gz
removed outdated test
-rw-r--r--test/test_issue457.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/test_issue457.py b/test/test_issue457.py
deleted file mode 100644
index e375e0b8..00000000
--- a/test/test_issue457.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# test for https://github.com/RDFLib/rdflib/issues/457
-
-import io
-from xml.etree import ElementTree
-
-import rdflib
-from rdflib.plugins.stores.sparqlstore import _node_from_result
-from six import b
-
-def test_issue457():
- s = b("""<ns0:literal xmlns:ns0="http://www.w3.org/2005/sparql-results#" />""")
- node = ElementTree.parse(io.BytesIO(s)).getroot()
- term = _node_from_result(node)
- assert term == rdflib.Literal(''), repr(term)