diff options
author | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2011-11-14 19:04:13 +0100 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2011-12-05 21:08:57 +0100 |
commit | 00bb95502e01f8c8fcaa5652889a5ed423051d7c (patch) | |
tree | c83c60823d55bb5a2042cfb704b7e4cb9794c110 /mediagoblin/tests | |
parent | 7a3d00ec217cc3fd44788b9d8c63ab9f7b1d05a7 (diff) | |
download | mediagoblin-00bb95502e01f8c8fcaa5652889a5ed423051d7c.tar.lz mediagoblin-00bb95502e01f8c8fcaa5652889a5ed423051d7c.tar.xz mediagoblin-00bb95502e01f8c8fcaa5652889a5ed423051d7c.zip |
Dot-Notation for Users.verification_key
Diffstat (limited to 'mediagoblin/tests')
-rw-r--r-- | mediagoblin/tests/test_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_auth.py b/mediagoblin/tests/test_auth.py index bd79a407..7cb867d7 100644 --- a/mediagoblin/tests/test_auth.py +++ b/mediagoblin/tests/test_auth.py @@ -187,7 +187,7 @@ def test_register_views(test_app): assert parsed_get_params['userid'] == [ unicode(new_user._id)] assert parsed_get_params['token'] == [ - new_user['verification_key']] + new_user.verification_key] ## Try verifying with bs verification key, shouldn't work template.clear_test_template_context() |