From: JINMEI Tatuya Date: Wed, 25 Jan 2012 20:10:56 +0000 (-0800) Subject: [1611] added a missing case to findresultflags test. X-Git-Tag: trac2351_base~278^2~3^2~1^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad80da2f843962bc6a7b05c9c3b624cee48a72eb;p=thirdparty%2Fkea.git [1611] added a missing case to findresultflags test. --- diff --git a/src/lib/python/isc/datasrc/tests/datasrc_test.py b/src/lib/python/isc/datasrc/tests/datasrc_test.py index 7a1bf245a7..5ccd18e40e 100644 --- a/src/lib/python/isc/datasrc/tests/datasrc_test.py +++ b/src/lib/python/isc/datasrc/tests/datasrc_test.py @@ -321,10 +321,13 @@ class DataSrcClient(unittest.TestCase): self.assertNotEqual(ZoneFinder.CNAME, ZoneFinder.DNAME) def test_findresultflags(self): + '''A simple test just confirming the flags are all different.''' self.assertNotEqual(ZoneFinder.RESULT_WILDCARD, ZoneFinder.RESULT_NSEC_SIGNED) self.assertNotEqual(ZoneFinder.RESULT_NSEC_SIGNED, ZoneFinder.RESULT_NSEC3_SIGNED) + self.assertNotEqual(ZoneFinder.RESULT_NSEC3_SIGNED, + ZoneFinder.RESULT_WILDCARD) def test_findall(self): """