[go: up one dir, main page]

Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Sep 17, 2024
1 parent 7fd003d commit 7804009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_frontend_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ def test_basic_frontend_url_content(self):
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 -")

0 comments on commit 7804009

Please sign in to comment.