Browse Source

Fix tests.

pull/366/head
Pēteris Caune 5 years ago
parent
commit
3cca17560a
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
1 changed files with 0 additions and 10 deletions
  1. +0
    -10
      hc/api/tests/test_admin.py

+ 0
- 10
hc/api/tests/test_admin.py View File

@ -20,13 +20,3 @@ class ApiAdminTestCase(BaseTestCase):
r = self.client.get("/admin/api/channel/")
self.assertContains(r, "Pushbullet")
def test_it_shows_channel_list_with_unverified_email(self):
self.client.login(username="[email protected]", password="password")
Channel.objects.create(
project=self.project, kind="email", value="[email protected]"
)
r = self.client.get("/admin/api/channel/")
self.assertContains(r, "Email <i>(unconfirmed)</i>")

Loading…
Cancel
Save