From 387123dd3ee5ec191bb678c6bf7ec9951a4a73be Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 2 Feb 2025 15:16:37 -0500 Subject: [PATCH] Fix signup test --- test/test_offline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_offline.py b/test/test_offline.py index cc2f1e5..6af5082 100644 --- a/test/test_offline.py +++ b/test/test_offline.py @@ -45,7 +45,7 @@ def client(app): def test_signup_get(client): response = client.get("/signup") - assert b"Rules" in response.data + assert b"Create a new account" in response.data def _post_signup_form(client, username, password, password_confirm=None): if password_confirm is None: -- 2.39.5