e11sync

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 35f1d8a4fbd11f00087c3bffb1cbed4f1a491b2b (tree)
parent c61408beab011b4cce3cae8d7a5ddb22ada61ead
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Wed, 17 Jan 2024 09:00:44 +0200

fix unit test

Diffstat:
Mapp/signup/tests.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/signup/tests.py b/app/signup/tests.py @@ -11,7 +11,7 @@ class SignupViewTest(TestCase): def test_index(self): resp = self.client.get(reverse("index")) self.assertEqual(resp.status_code, 200) - self.assertContains(resp, "11sync is a privacy-respecting way") + self.assertContains(resp, "Hosted Syncthing") def test_ok_signup(self): resp = self.client.post(reverse("index"), {"email": "foo@example.com"},