There was an error while loading. Please reload this page.
1 parent 3a068e4 commit 6c6c2d3Copy full SHA for 6c6c2d3
1 file changed
src/nti/property/tests/test_urlproperty.py
@@ -20,7 +20,7 @@
20
21
try:
22
from nti.property.urlproperty import UrlProperty
23
-except ModuleNotFoundError:
+except ModuleNotFoundError: # pragma: no cover
24
UrlProperty = None
25
26
@@ -35,7 +35,7 @@ class TestURLProperty(unittest.TestCase):
35
36
def setUp(self):
37
super().setUp()
38
- if UrlProperty is None:
+ if UrlProperty is None: # pragma: no cover
39
self.skipTest('zope.file not installed')
40
41
def test_getitem(self):
0 commit comments