fix tests

This commit is contained in:
koalasat 2024-09-17 17:28:48 +02:00
parent 7fd003d337
commit 7804009d2d
No known key found for this signature in database
GPG Key ID: 2F7F61C6146AB157

View File

@ -10,10 +10,10 @@ class FrontendFetchTest(TestCase):
path = reverse("basic")
response = self.client.get(path)
self.assertContains(response, "<html>")
self.assertContains(response, "-basic")
self.assertContains(response, "RoboSats -")
def test_pro_frontend_url_content(self):
path = reverse("pro")
response = self.client.get(path)
self.assertContains(response, "<html>")
self.assertContains(response, "-pro")
self.assertContains(response, "RoboSats PRO -")