From 1484ad7826a1c7aa08f52bf4d1b6b9b5d9cc883c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Mon, 1 May 2017 21:41:34 +0000 Subject: [PATCH] tests: Fix typo --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index d026234..0a925ea 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -115,7 +115,7 @@ def test_cli_setup_authority(): assert r.status_code == 404, r.text r = client().simulate_get("/index.html") assert r.status_code == 200, r.text - r = requests.get("/index.html") + r = requests.get("http://ca.example.lan/index.html") assert r.status_code == 200, r.text