avoid using a bool for a skip value

This commit is contained in:
Jean-Paul Calderone 2019-02-27 10:14:26 -05:00
parent 76a6f2d710
commit 75d77305f9

@ -230,7 +230,7 @@ class INotifyTests(unittest.TestCase):
self.inotify.watch(self.dirname, recursive=True)
for d in dirs:
self.assertTrue(self.inotify._isWatched(d))
test_recursiveWatch.skip = True
test_recursiveWatch.skip = "not relevant"
def test_connectionLostError(self):