diff options
| author | Nicholas Car <nicholas.car@surroundaustralia.com> | 2020-05-16 21:00:24 +1000 |
|---|---|---|
| committer | Nicholas Car <nicholas.car@surroundaustralia.com> | 2020-05-16 21:00:24 +1000 |
| commit | 0be6f6039479ce29cf71b11e76be54e186130036 (patch) | |
| tree | 897d208525a7e8952fb496151db074d49dcdeb3a /test/test_diff.py | |
| parent | 2a8d70824e1b4caf0c606074a44ac3a15fa72718 (diff) | |
| download | rdflib-0be6f6039479ce29cf71b11e76be54e186130036.tar.gz | |
blacked all python files
Diffstat (limited to 'test/test_diff.py')
| -rw-r--r-- | test/test_diff.py | 4 |
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) |
