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 71bda8b commit 88054a0
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, "main.js")
self.assertContains(response, "-basic")

def test_pro_frontend_url_content(self):
path = reverse("pro")
response = self.client.get(path)
self.assertContains(response, "<html>")
self.assertContains(response, "pro.js")
self.assertContains(response, "-pro")

0 comments on commit 88054a0

Please sign in to comment.