diff options
author | 2013-08-11 01:07:40 +0200 | |
---|---|---|
committer | 2013-08-11 01:07:40 +0200 | |
commit | 799b5cea2c5b8580ba369aee278984a8abec7289 (patch) | |
tree | aad71fa7a045c336a7635deb40582e3959b3255e /okupy/tests | |
parent | Rename the unit test classes, and split them into different modules (diff) | |
download | identity.gentoo.org-799b5cea2c5b8580ba369aee278984a8abec7289.tar.gz identity.gentoo.org-799b5cea2c5b8580ba369aee278984a8abec7289.tar.bz2 identity.gentoo.org-799b5cea2c5b8580ba369aee278984a8abec7289.zip |
typo
Diffstat (limited to 'okupy/tests')
-rw-r--r-- | okupy/tests/unit/signup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/okupy/tests/unit/signup.py b/okupy/tests/unit/signup.py index 7763eb5..071c68e 100644 --- a/okupy/tests/unit/signup.py +++ b/okupy/tests/unit/signup.py @@ -10,7 +10,7 @@ from ...common.test_helpers import set_request class SignupUnitTests(TestCase): def test_signup_url_resolves_to_signup_view(self): found = resolve('/signup') - self.assertEqual(found.func, index) + self.assertEqual(found.func, signup) def test_signup_page_returns_200_for_anonymous(self): request = set_request(uri='/signup') |