diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-10-14 10:34:03 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-10-14 10:34:03 -0400 |
commit | 16231d22db0065b0d08e9ee7dd6ed68b430c8a12 (patch) | |
tree | 4fcf82f7de24a383ace88bdc16e1bfad750eec70 | |
parent | cdee1a9f2e0c5b4e2eb9253e974cf82264de2219 (diff) | |
download | sqlalchemy-16231d22db0065b0d08e9ee7dd6ed68b430c8a12.tar.gz |
- fix test warning here (oursql)
-rw-r--r-- | test/orm/test_unitofwork.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/orm/test_unitofwork.py b/test/orm/test_unitofwork.py index 67a11e366..386280a50 100644 --- a/test/orm/test_unitofwork.py +++ b/test/orm/test_unitofwork.py @@ -876,10 +876,10 @@ class DefaultTest(fixtures.MappedTest): self.sql_count_(0, lambda: eq_(h1.hoho, hohoval)) # no actual eager defaults, make sure error isn't raised - h2 = Hoho(hoho='fas', counter=5) + h2 = Hoho(hoho=hohoval, counter=5) session.add(h2) session.flush() - eq_(h2.hoho, 'fas') + eq_(h2.hoho, hohoval) eq_(h2.counter, 5) |