From c88e010a4fe88b89629df274a2e431254b7ea9c9 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sat, 30 May 2020 09:45:17 +0100 Subject: fixed old failing func test --- ctrack/core/tests/test_functional.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ctrack/core/tests/test_functional.py') diff --git a/ctrack/core/tests/test_functional.py b/ctrack/core/tests/test_functional.py index 6661072..945b50a 100644 --- a/ctrack/core/tests/test_functional.py +++ b/ctrack/core/tests/test_functional.py @@ -1,3 +1,3 @@ -def test_can_get_homepage(browser): - browser.get("http://localhost:8000") - assert "ctrack" in browser.title +def test_can_get_homepage_for_signing(browser, live_server): + browser.get(live_server + "/") + assert "Sign In" in browser.title -- cgit v1.2.3