Tests: Fix multilang test.

How did this ever work?
This commit is contained in:
Andrew Ekstedt 2015-05-21 11:24:47 -07:00
parent 7e1817f0b2
commit 7aa50d2293

View file

@ -108,7 +108,7 @@ def test_i18n_table_creation():
sess.commit() sess.commit()
### Test 1: re-fetch foo and check its attributes ### Test 1: re-fetch foo and check its attributes
foo = sess.query(Foo).params(_default_language='en').one() foo = sess.query(Foo).params(_default_language_id=lang_en.id).one()
# Dictionary of language identifiers => names # Dictionary of language identifiers => names
assert foo.name_map[lang_en] == 'english' assert foo.name_map[lang_en] == 'english'