33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
diff -up jurko-suds-94664ddd46a6/tests/test_transport_http.py.httptestfix jurko-suds-94664ddd46a6/tests/test_transport_http.py
|
|
--- jurko-suds-94664ddd46a6/tests/test_transport_http.py.httptestfix 2015-07-27 05:08:20.000000000 -0400
|
|
+++ jurko-suds-94664ddd46a6/tests/test_transport_http.py 2016-01-09 23:29:22.749940293 -0500
|
|
@@ -120,6 +120,9 @@ class MockFP:
|
|
def readline():
|
|
raise MustNotBeCalled
|
|
|
|
+ def close(self):
|
|
+ pass
|
|
+
|
|
|
|
class MockURLOpenerSaboteur:
|
|
"""
|
|
@@ -295,12 +298,18 @@ def test_sending_using_network_sockets(s
|
|
self.__mocker.mock_sent_data += data
|
|
def settimeout(self, *args, **kwargs):
|
|
pass
|
|
+ def setsockopt(self, level, optname, value):
|
|
+ pass
|
|
|
|
class MockSocketReader(CountedMock):
|
|
def __init__(self):
|
|
super(MockSocketReader, self).__init__()
|
|
def readline(self, *args, **kwargs):
|
|
raise MyException
|
|
+ def close(self):
|
|
+ pass
|
|
+ def flush(self):
|
|
+ pass
|
|
|
|
# Setup.
|
|
host = "an-easily-recognizable-host-name-214894932"
|