summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-10-14 10:34:03 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-10-14 10:34:03 -0400
commit16231d22db0065b0d08e9ee7dd6ed68b430c8a12 (patch)
tree4fcf82f7de24a383ace88bdc16e1bfad750eec70
parentcdee1a9f2e0c5b4e2eb9253e974cf82264de2219 (diff)
downloadsqlalchemy-16231d22db0065b0d08e9ee7dd6ed68b430c8a12.tar.gz
- fix test warning here (oursql)
-rw-r--r--test/orm/test_unitofwork.py4
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)