From 75d77305f93f4adbfa1d98c84583a0dee90423cc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 27 Feb 2019 10:14:26 -0500 Subject: [PATCH] avoid using a bool for a skip value --- src/allmydata/test/test_inotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/test/test_inotify.py b/src/allmydata/test/test_inotify.py index 007bb0475..ea8c90315 100644 --- a/src/allmydata/test/test_inotify.py +++ b/src/allmydata/test/test_inotify.py @@ -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):