From 45d135911f9a24bc1248ba01d913ae8542ea4266 Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 30 Apr 2020 20:36:12 +0930 Subject: [PATCH] Fix tests. --- tests/handlers/test_index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/handlers/test_index.py b/tests/handlers/test_index.py index 27d2f09c..08f58bd2 100644 --- a/tests/handlers/test_index.py +++ b/tests/handlers/test_index.py @@ -29,8 +29,8 @@ def get_static(filename): return os.path.join(os.path.abspath(os.path.join(current_dir, '..', '..', 'gns3server', 'static')), filename) -def test_index(http_root): - response = http_root.get('/') +def test_debug(http_root): + response = http_root.get('/debug') assert response.status == 200 html = response.html assert "Website" in html