aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tests/test_api.py
diff options
context:
space:
mode:
authorElrond <elrond+mediagoblin.org@samba-tng.org>2012-12-23 23:55:44 +0100
committerElrond <elrond+mediagoblin.org@samba-tng.org>2012-12-23 23:55:44 +0100
commit1eac751bd2b3ecf4f9bfffe101c3f16f1e49eba6 (patch)
tree374dfcf87663c81b476fa8f7f978bad9d72ef52e /mediagoblin/tests/test_api.py
parent601e6e0cce3af9a2521e6bf4e6d50740c84dc653 (diff)
downloadmediagoblin-1eac751bd2b3ecf4f9bfffe101c3f16f1e49eba6.tar.lz
mediagoblin-1eac751bd2b3ecf4f9bfffe101c3f16f1e49eba6.tar.xz
mediagoblin-1eac751bd2b3ecf4f9bfffe101c3f16f1e49eba6.zip
Fix some unicode related issues in oauth and the api.
Found using the previous commit.
Diffstat (limited to 'mediagoblin/tests/test_api.py')
-rw-r--r--mediagoblin/tests/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_api.py b/mediagoblin/tests/test_api.py
index de61c681..188cdadb 100644
--- a/mediagoblin/tests/test_api.py
+++ b/mediagoblin/tests/test_api.py
@@ -101,4 +101,4 @@ class TestAPI(object):
assert response.status_int == 200
- assert self.db.MediaEntry.query.filter_by(title='Great JPG!').first()
+ assert self.db.MediaEntry.query.filter_by(title=u'Great JPG!').first()