fix typo (false positive test)

pull/930/head
Lee Clemens 2015-02-03 18:18:09 -05:00
parent c755138672
commit 50d18f68df
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ class IgnoreIP(LogCaptureTestCase):
def testIgnoreCauseNOK(self):
self.filter.logIgnoreIp("example.com", False, ignore_source="NOT_LOGGED")
self.assertFalse(self._is_logged("[%s] Ignore %s by %s" % (self.jail.name, "example.com", "NO_LOGGED")))
self.assertFalse(self._is_logged("[%s] Ignore %s by %s" % (self.jail.name, "example.com", "NOT_LOGGED")))
class IgnoreIPDNS(IgnoreIP):