aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_auth.py
diff options
context:
space:
mode:
authorChris Moylan <chris@chrismoylan.com>2011-07-10 22:45:52 -0500
committerChris Moylan <chris@chrismoylan.com>2011-07-10 22:45:52 -0500
commit3d073d48cbf797c3da7b19670b8696d2229cce9b (patch)
treeff32c6b125ccf791d2adc70064d2f7bc7ae6ef3b /mediagoblin/tests/test_auth.py
parent9df37e8a4a9387e9ebe6690d0f18b94a31d7ae4d (diff)
parent3054e2b3cb08839aca7da2e1c5b4cce1768bf705 (diff)
downloadmediagoblin-3d073d48cbf797c3da7b19670b8696d2229cce9b.tar.lz
mediagoblin-3d073d48cbf797c3da7b19670b8696d2229cce9b.tar.xz
mediagoblin-3d073d48cbf797c3da7b19670b8696d2229cce9b.zip
Merge branch 'master' into test_submission_views_365
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'})