diff options
author | Brett Smith <brettcsmith@brettcsmith.org> | 2012-07-04 11:09:36 -0400 |
---|---|---|
committer | Brett Smith <brettcsmith@brettcsmith.org> | 2012-07-04 11:09:36 -0400 |
commit | c7dfd4fba6407d70345c5dc9017e87e472ce6722 (patch) | |
tree | d34fc0aba105a6277748c8f09aab4c53295f252d /mediagoblin | |
parent | a00ac32045a7a03d91e0e64ee8470f0bd6f383d8 (diff) | |
download | mediagoblin-c7dfd4fba6407d70345c5dc9017e87e472ce6722.tar.lz mediagoblin-c7dfd4fba6407d70345c5dc9017e87e472ce6722.tar.xz mediagoblin-c7dfd4fba6407d70345c5dc9017e87e472ce6722.zip |
Level exits are Unicode too.
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/tests/test_sql_migrations.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/tests/test_sql_migrations.py b/mediagoblin/tests/test_sql_migrations.py index 7fea101c..8ef46fdc 100644 --- a/mediagoblin/tests/test_sql_migrations.py +++ b/mediagoblin/tests/test_sql_migrations.py @@ -344,8 +344,8 @@ def _insert_migration1_objects(session): name=u'The Necroplex', description=u'A complex full of pure deathzone.', exits={ - 'deathwell': 'evilstorm', - 'portal': 'central_park'}), + u'deathwell': u'evilstorm', + u'portal': u'central_park'}), Level1(id=u'evilstorm', name=u'Evil Storm', description=u'A storm full of pure evil.', @@ -354,7 +354,7 @@ def _insert_migration1_objects(session): name=u'Central Park, NY, NY', description=u"New York's friendly Central Park.", exits={ - 'portal': 'necroplex'})]) + u'portal': u'necroplex'})]) session.commit() |