mirror of https://github.com/fail2ban/fail2ban
14 lines
482 B
Plaintext
14 lines
482 B
Plaintext
--- a/testcases/clientreadertestcase.py
|
|
+++ b/testcases/clientreadertestcase.py
|
|
@@ -65,7 +65,9 @@ option = %s
|
|
self._write('d.conf', 0)
|
|
self.assertEqual(self._getoption('d'), 0)
|
|
os.chmod(f, 0)
|
|
- self.assertFalse(self.c.read('d')) # should not be readable BUT present
|
|
+ # yoh: while building via fakeroot it seems that chmod is not immediately
|
|
+ # effective
|
|
+ # self.assertFalse(self.c.read('d')) # should not be readable BUT present
|
|
|
|
|
|
def testOptionalDotDDir(self):
|