Skip to content
Snippets Groups Projects
Commit d39b9a97 authored by Ben Adida's avatar Ben Adida
Browse files

fixed title that still said IACR

parent 3cc0cc0a
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
xml:lang="{% firstof LANGUAGE_CODE 'en' %}"
lang="{% firstof LANGUAGE_CODE 'en' %}">
<head>
<title>{% block title %}Authentication{% endblock %} - IACR</title>
<title>{% block title %}Authentication{% endblock %} - Helios</title>
{% block css %}
<!--
<link rel="stylesheet" type="text/css" media="screen, projection" href="{{ MEDIA_URL }}combined-{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}.css" />
......
......@@ -342,6 +342,10 @@ class ElectionBlackboxTests(TestCase):
response = self.client.get("/helios/elections/params")
self.assertEquals(response.content, views.ELGAMAL_PARAMS_LD_OBJECT.serialize())
def test_election_bad_trustee(self):
response = self.client.get("/helios/elections/%s/trustees/foobar@bar.com/badsecret" % self.election.uuid)
import pdb; pdb.set_trace()
def test_get_election_shortcut(self):
response = self.client.get("/helios/e/%s" % self.election.short_name, follow=True)
self.assertContains(response, self.election.description)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment