diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-30 09:45:17 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-30 09:45:17 +0100 |
commit | c88e010a4fe88b89629df274a2e431254b7ea9c9 (patch) | |
tree | 4062a4063d0631dcf5cd4d07859d3ba8a2bffbb1 /ctrack/core | |
parent | 9307fc7676db68de4b3d25f795aa2a351f9d4843 (diff) |
fixed old failing func test
Diffstat (limited to 'ctrack/core')
-rw-r--r-- | ctrack/core/tests/test_functional.py | 6 |
1 files changed, 3 insertions, 3 deletions
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 |