aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_auth.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-07-06 22:49:53 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-07-06 22:49:53 -0500
commit2f4e62c21052362e9cf22c28a9ce62c7d2a53698 (patch)
tree00417d5c5f512c4b046a0cb119ea2aa36d035c1b /mediagoblin/tests/test_auth.py
parentb27ec167864b6847e39d0aee877521f465d567d4 (diff)
parente054ae9b3dfc518a34eb4a7395b177f0e8a31469 (diff)
downloadmediagoblin-2f4e62c21052362e9cf22c28a9ce62c7d2a53698.tar.lz
mediagoblin-2f4e62c21052362e9cf22c28a9ce62c7d2a53698.tar.xz
mediagoblin-2f4e62c21052362e9cf22c28a9ce62c7d2a53698.zip
Merge remote branch 'remotes/gullydwarf-cfdv/f424_email_verified_messaging'
Diffstat (limited to 'mediagoblin/tests/test_auth.py')
-rw-r--r--mediagoblin/tests/test_auth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/tests/test_auth.py b/mediagoblin/tests/test_auth.py
index 3a13cbb1..ad9dd35b 100644
--- a/mediagoblin/tests/test_auth.py
+++ b/mediagoblin/tests/test_auth.py
@@ -189,7 +189,7 @@ def test_register_views(test_app):
"/auth/verify_email/?userid=%s&token=total_bs" % unicode(
new_user['_id']))
context = util.TEMPLATE_TEST_CONTEXT[
- 'mediagoblin/auth/verify_email.html']
+ 'mediagoblin/user_pages/user.html']
assert context['verification_successful'] == False
new_user = mg_globals.database.User.find_one(
{'username': 'happygirl'})
@@ -201,7 +201,7 @@ def test_register_views(test_app):
util.clear_test_template_context()
test_app.get("%s?%s" % (path, get_params))
context = util.TEMPLATE_TEST_CONTEXT[
- 'mediagoblin/auth/verify_email.html']
+ 'mediagoblin/user_pages/user.html']
assert context['verification_successful'] == True
new_user = mg_globals.database.User.find_one(
{'username': 'happygirl'})