summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEdmond Chuc <e.chuc@uq.edu.au>2021-07-15 00:38:45 +1000
committerEdmond Chuc <e.chuc@uq.edu.au>2021-07-15 00:38:45 +1000
commit2cbc2c438f89cc750d97b9a6a427227c53f33d14 (patch)
tree4203da5de3b6978b345b9aecc65f8abf47a547b9 /test
parent19c230cd3af179cbdf905d5f3e3c15c672c5ab03 (diff)
downloadrdflib-2cbc2c438f89cc750d97b9a6a427227c53f33d14.tar.gz
Namespace can be used as str
Diffstat (limited to 'test')
-rw-r--r--test/test_namespace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_namespace.py b/test/test_namespace.py
index d04beb07..9f0b98b9 100644
--- a/test/test_namespace.py
+++ b/test/test_namespace.py
@@ -212,7 +212,7 @@ class NamespacePrefixTest(unittest.TestCase):
)
# namescape can be used as str
- # self.assertTrue(FOAF.givenName.startswith(FOAF))
+ self.assertTrue(FOAF.givenName.startswith(FOAF))
def test_contains_method(self):
"""Tests for Namespace.__contains__() methods."""