X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/2a8dec47ae303c6b011d8b71e8e096a602518e23..7e756ef244438b09b9ab8b28cc12a15c74e310b7:/pokedex/tests/test_schema.py?ds=inline diff --git a/pokedex/tests/test_schema.py b/pokedex/tests/test_schema.py index 2ad795c..0518ed8 100644 --- a/pokedex/tests/test_schema.py +++ b/pokedex/tests/test_schema.py @@ -80,9 +80,12 @@ def test_i18n_table_creation(): foo = Foo() sess.add(foo) - # Commit so the above get primary keys filled in + # Commit so the above get primary keys filled in, then give the + # session the language id sess.commit() - sess.default_language = lang_en.id + # Note that this won't apply to sessions created in other threads, but that + # ought not be a problem! + sess.default_language_id = lang_en.id # Give our foo some names, as directly as possible foo_text = FooText()