From 1f2ce48fc81d217fb2fefc1d8ff59b04517afb8c Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 11 Jul 2016 14:21:33 +0200 Subject: [PATCH] Fix /network/interfaces broken test --- tests/handlers/api/compute/test_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/handlers/api/compute/test_network.py b/tests/handlers/api/compute/test_network.py index 32d0502a..012a537c 100644 --- a/tests/handlers/api/compute/test_network.py +++ b/tests/handlers/api/compute/test_network.py @@ -28,6 +28,6 @@ def test_udp_allocation(http_compute, project): # Netfifaces is not available on Travis @pytest.mark.skipif(os.environ.get("TRAVIS", False) is not False, reason="Not supported on Travis") def test_interfaces(http_compute): - response = http_compute.get('/interfaces', example=True) + response = http_compute.get('/network/interfaces', example=True) assert response.status == 200 assert isinstance(response.json, list)