BIND 10 trac2117, updated. 7b1169a3158a93ce2387ff8c0df5815a96882a65 get lost diff on sockcreator_test.py

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Sep 19 14:49:31 UTC 2012


The branch, trac2117 has been updated
       via  7b1169a3158a93ce2387ff8c0df5815a96882a65 (commit)
      from  d08c384ab8fa9a5993ac985d9b98d1d2909f463f (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 7b1169a3158a93ce2387ff8c0df5815a96882a65
Author: Francis Dupont <fdupont at isc.org>
Date:   Wed Sep 19 16:48:58 2012 +0200

    get lost diff on sockcreator_test.py

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

Summary of changes:
 .../python/isc/bind10/tests/sockcreator_test.py    |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/bind10/tests/sockcreator_test.py b/src/lib/python/isc/bind10/tests/sockcreator_test.py
index 4b3fb36..3f78651 100644
--- a/src/lib/python/isc/bind10/tests/sockcreator_test.py
+++ b/src/lib/python/isc/bind10/tests/sockcreator_test.py
@@ -22,7 +22,7 @@ import struct
 import socket
 from isc.net.addr import IPAddr
 import isc.log
-import isc.util.socketpair
+from isc.util.socketpair import socketpair
 from libutil_io_python import send_fd
 from isc.bind10.sockcreator import Parser, CreatorError, WrappedSocket
 
@@ -297,9 +297,9 @@ class WrapTests(unittest.TestCase):
         # check the received one can be used as a socket
 
         # The transport socket
-        (t1, t2) = socketpair.socketpair()
+        (t1, t2) = socketpair()
         # The payload socket
-        (p1, p2) = socketpair.socketpair()
+        (p1, p2) = socketpair()
 
         t2 = WrappedSocket(t2)
 



More information about the bind10-changes mailing list