diff --git a/test/test_dss_api.py b/test/test_dss_api.py index dd352bc5..8fc7a271 100755 --- a/test/test_dss_api.py +++ b/test/test_dss_api.py @@ -95,7 +95,7 @@ def test_python_subscriptions(self): client = hca.dss.DSSClient() query = {'bool': {}} - resp = client.put_subscription(es_query=query, callback_url="www.example.com", replica="aws") + resp = client.put_subscription(es_query=query, callback_url="https://www.example.com", replica="aws") subscription_uuid = resp['uuid'] resp = client.get_subscriptions(replica="aws") @@ -126,7 +126,7 @@ def test_search(self): def test_python_login_logout(self): client = hca.dss.DSSClient() query = {'bool': {}} - resp = client.put_subscription(es_query=query, callback_url="www.example.com", replica="aws") + resp = client.put_subscription(es_query=query, callback_url="https://www.example.com", replica="aws") self.assertIn("uuid", resp) access_token = "test_access_token"