BIND 10 master, updated. a56e72ce1bbc9d016a7ebd83eaba0aadbf2b41aa Fix missing isInstance

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Dec 8 11:44:44 UTC 2011


The branch, master has been updated
       via  a56e72ce1bbc9d016a7ebd83eaba0aadbf2b41aa (commit)
      from  318dceaa39aa30ee9d394e1e096d4891f3bee490 (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 a56e72ce1bbc9d016a7ebd83eaba0aadbf2b41aa
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date:   Thu Dec 8 12:44:30 2011 +0100

    Fix missing isInstance

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

Summary of changes:
 src/bin/bind10/tests/bind10_test.py.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/bind10/tests/bind10_test.py.in b/src/bin/bind10/tests/bind10_test.py.in
index 8f2d223..f9537fd 100644
--- a/src/bin/bind10/tests/bind10_test.py.in
+++ b/src/bin/bind10/tests/bind10_test.py.in
@@ -1307,7 +1307,7 @@ class SocketSrvTest(unittest.TestCase):
         # After we accepted, a new socket is added there
         socket = self.__boss._unix_sockets[13][0]
         # The socket is properly stored there
-        self.assertIsInstance(socket, self.__FalseSocket)
+        self.assertTrue(isinstance(socket, self.__FalseSocket))
         # And the buffer (yet empty) is there
         self.assertEqual({13: (socket, b'')}, self.__boss._unix_sockets)
 




More information about the bind10-changes mailing list