Skip to content
Snippets Groups Projects
Commit e5f8e396 authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

Remove hardcoded http in tests

parent d8e76689
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ def data_config():
"admin_username": "fakeadmin",
"admin_password": "fakeadmin",
"hostname": "myfakehostname.org",
"inventory_provider": "inventory-provider01.geant.org:8080",
"inventory_provider": "http://inventory-provider01.geant.org:8080",
"organizations": [
{
"name": "Testorg1",
......
......@@ -145,7 +145,7 @@ def test_provision(data_config, mocker, client):
responses.add_callback(
method=responses.GET,
url=f"http://{data_config['inventory_provider']}/poller/interfaces",
url=f"{data_config['inventory_provider']}/poller/interfaces",
callback=get_callback)
def folder_get(request):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment