summaryrefslogtreecommitdiff
path: root/test/test_diff.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_diff.py')
-rw-r--r--test/test_diff.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_diff.py b/test/test_diff.py
index bf49dd9d..7e4db728 100644
--- a/test/test_diff.py
+++ b/test/test_diff.py
@@ -13,7 +13,7 @@ class TestDiff(unittest.TestCase):
def testA(self):
"""with bnode"""
g = rdflib.Graph()
- g.add((rdflib.BNode(), rdflib.URIRef("urn:p"), rdflib.Literal(u'\xe9')))
+ g.add((rdflib.BNode(), rdflib.URIRef("urn:p"), rdflib.Literal(u"\xe9")))
diff = graph_diff(g, g)
@@ -21,7 +21,7 @@ class TestDiff(unittest.TestCase):
"""Curiously, this one passes, even before the fix in issue 151"""
g = rdflib.Graph()
- g.add((rdflib.URIRef("urn:a"), rdflib.URIRef("urn:p"), rdflib.Literal(u'\xe9')))
+ g.add((rdflib.URIRef("urn:a"), rdflib.URIRef("urn:p"), rdflib.Literal(u"\xe9")))
diff = graph_diff(g, g)