diff --git a/src/postorius/templates/postorius/login.html b/src/postorius/templates/postorius/login.html index a139223..d469816 100644 --- a/src/postorius/templates/postorius/login.html +++ b/src/postorius/templates/postorius/login.html @@ -20,7 +20,8 @@
- + + {% trans 'Login using BrowserID' %} @@ -38,22 +39,5 @@ {% endblock %} {% block additionaljs %} - - - - - - - + {% browserid_js %} {% endblock additionaljs %} diff --git a/src/postorius/tests/mailman_api_tests/test_list_members.py b/src/postorius/tests/mailman_api_tests/test_list_members.py index 9bb7984..21884d5 100644 --- a/src/postorius/tests/mailman_api_tests/test_list_members.py +++ b/src/postorius/tests/mailman_api_tests/test_list_members.py @@ -18,7 +18,7 @@ from django.contrib.auth.models import User from django.core.urlresolvers import reverse -from django.test import Client, SimpleTestCase +from django.test import Client, TestCase from django.test.utils import override_settings from urllib2 import HTTPError @@ -37,7 +37,7 @@ @override_settings(**API_CREDENTIALS) -class ListMembersAccessTest(SimpleTestCase): +class ListMembersAccessTest(TestCase): """Tests for the list members page. Tests permissions and creation of list owners and moderators. @@ -109,7 +109,7 @@ @override_settings(**API_CREDENTIALS) -class AddOwnerTest(SimpleTestCase): +class AddOwnerTest(TestCase): """Tests for the list members page. Tests creation of list owners. @@ -143,7 +143,7 @@ @override_settings(**API_CREDENTIALS) -class AddModeratorTest(SimpleTestCase): +class AddModeratorTest(TestCase): """Tests for the list members page. Tests creation of moderators.