BIND 10 master, updated. 3d4f3cd903294e03bafbf37963051fdcf2233cae Merge branch 'trac2644'

BIND 10 source code commits bind10-changes at lists.isc.org
Sun Jan 27 23:31:15 UTC 2013


The branch, master has been updated
       via  3d4f3cd903294e03bafbf37963051fdcf2233cae (commit)
       via  ea780724240cfb2e065d3cfac7a32ba16e931dc3 (commit)
      from  443be4318110331b2761b8d945dab4f05d765a1a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3d4f3cd903294e03bafbf37963051fdcf2233cae
Merge: 443be43 ea78072
Author: Mukund Sivaraman <muks at isc.org>
Date:   Mon Jan 28 04:48:27 2013 +0530

    Merge branch 'trac2644'

-----------------------------------------------------------------------

Summary of changes:
 src/lib/python/isc/notify/tests/notify_out_test.py |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/notify/tests/notify_out_test.py b/src/lib/python/isc/notify/tests/notify_out_test.py
index b9183e0..60c8f2f 100644
--- a/src/lib/python/isc/notify/tests/notify_out_test.py
+++ b/src/lib/python/isc/notify/tests/notify_out_test.py
@@ -436,7 +436,9 @@ class TestNotifyOut(unittest.TestCase):
         self._notify._notify_infos[('example.com.', 'IN')].notify_timeout = time.time() + 5
         timeout, valid_fds, notifying_zones = self._notify._prepare_select_info()
         self.assertEqual(timeout, 0)
-        self.assertListEqual([2, 1], valid_fds)
+        self.assertEqual(len(valid_fds), 2)
+        self.assertIn(1, valid_fds)
+        self.assertIn(2, valid_fds)
 
     def test_shutdown(self):
         thread = self._notify.dispatcher()



More information about the bind10-changes mailing list