diff options
| author | Nicholas Car <nicholas.car@surroundaustralia.com> | 2021-07-20 23:13:06 +1000 |
|---|---|---|
| committer | Nicholas Car <nicholas.car@surroundaustralia.com> | 2021-07-20 23:13:06 +1000 |
| commit | 17969dccdc6b182ef19c1a9e0b86a6585026aeab (patch) | |
| tree | e9d421e78624f0e9cd11f8217c2d92c129963012 /test/test_trix_parse.py | |
| parent | 7ebfd306543d8cc0a8b48700870e6fba3d7d256d (diff) | |
| download | rdflib-17969dccdc6b182ef19c1a9e0b86a6585026aeab.tar.gz | |
blacked everything6.0.0
Diffstat (limited to 'test/test_trix_parse.py')
| -rw-r--r-- | test/test_trix_parse.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/test_trix_parse.py b/test/test_trix_parse.py index 6f5a5c55..d845322e 100644 --- a/test/test_trix_parse.py +++ b/test/test_trix_parse.py @@ -18,7 +18,9 @@ class TestTrixParse(unittest.TestCase): g = ConjunctiveGraph() - trix_path = os.path.relpath(os.path.join(TEST_DIR, 'trix/aperture.trix'), os.curdir) + trix_path = os.path.relpath( + os.path.join(TEST_DIR, "trix/aperture.trix"), os.curdir + ) g.parse(trix_path, format="trix") c = list(g.contexts()) @@ -34,7 +36,9 @@ class TestTrixParse(unittest.TestCase): g = ConjunctiveGraph() - trix_path = os.path.relpath(os.path.join(TEST_DIR, 'trix/nokia_example.trix'), os.curdir) + trix_path = os.path.relpath( + os.path.join(TEST_DIR, "trix/nokia_example.trix"), os.curdir + ) g.parse(trix_path, format="trix") # print "Parsed %d triples"%len(g) @@ -43,7 +47,9 @@ class TestTrixParse(unittest.TestCase): g = ConjunctiveGraph() - trix_path = os.path.relpath(os.path.join(TEST_DIR, 'trix/ng4jtest.trix'), os.curdir) + trix_path = os.path.relpath( + os.path.join(TEST_DIR, "trix/ng4jtest.trix"), os.curdir + ) g.parse(trix_path, format="trix") # print "Parsed %d triples"%len(g) |
