From 7961327fb77025acd45c58cca21804ff134bb6a4 Mon Sep 17 00:00:00 2001 From: Julien Iguchi-Cartigny Date: Wed, 2 Jul 2014 22:47:10 +0200 Subject: [PATCH] ugly fix path to wsdl local files --- src/wstools/tests/test_wsdl.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/wstools/tests/test_wsdl.py b/src/wstools/tests/test_wsdl.py index b9b2c2f..d4a3a51 100644 --- a/src/wstools/tests/test_wsdl.py +++ b/src/wstools/tests/test_wsdl.py @@ -67,12 +67,10 @@ class WSDLToolsTestCase(unittest.TestCase): def test_all(self): try: - print "=>" + self.path - print "=>" + os.getcwd() if self.path[:7] == 'http://': self.wsdl = WSDLReader().loadFromURL(self.path) else: - self.wsdl = WSDLReader().loadFromFile(self.path) + self.wsdl = WSDLReader().loadFromFile('src/wstools/tests/' + self.path) except TimeoutError: print "connection timed out"