summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2009-04-16 00:16:21 +0000
committerjortel <devnull@localhost>2009-04-16 00:16:21 +0000
commit459eb5d50027580bbf70e79b3c369362c7f9d1f0 (patch)
treebb1317257ee65e63714443a8b9692e514a8102e6 /tests
parent67b8846e1a15665dca00bc0d04601188aff0adbe (diff)
downloadsuds-459eb5d50027580bbf70e79b3c369362c7f9d1f0.tar.gz
Remove redundant call to HttpAuthenticated __init__()
Diffstat (limited to 'tests')
-rw-r--r--tests/rhq.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rhq.py b/tests/rhq.py
index bbc9c6a..9a863c6 100644
--- a/tests/rhq.py
+++ b/tests/rhq.py
@@ -29,7 +29,7 @@ from tests import *
from suds import WebFault
from suds.client import Client
from suds.xsd.sxbasic import Import
-from suds.transport.http import HttpTransport
+from suds.transport.https import HttpAuthenticated
from suds.transport.cache import FileCache
errors = 0
@@ -42,7 +42,7 @@ Import.bind('http://schemas.xmlsoap.org/soap/encoding/')
#logging.getLogger('suds.metrics').setLevel(logging.DEBUG)
#logging.getLogger('suds').setLevel(logging.DEBUG)
-class MyTransport(HttpTransport):
+class MyTransport(HttpAuthenticated):
pass
mycache = FileCache(days=90)