Fix tests with new POST refactoring

This commit is contained in:
Sambhav Kothari
2017-07-20 21:34:31 +05:30
parent d239b865af
commit 83e423f0a2

View File

@@ -10,14 +10,14 @@ PROXY_SETTINGS = {
"proxy_server_host": '127.0.0.1',
"proxy_server_port": 3128,
"proxy_username": 'user',
"proxy_password": 'password'
"proxy_password": 'password',
}
class WebServiceTest(unittest.TestCase):
def setUp(self):
config.setting = {'use_proxy': False}
config.setting = {'use_proxy': False, 'server_host': ''}
self.ws = WebService()
def tearDown(self):