From 16231d22db0065b0d08e9ee7dd6ed68b430c8a12 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 14 Oct 2013 10:34:03 -0400 Subject: [PATCH] - fix test warning here (oursql) --- test/orm/test_unitofwork.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/orm/test_unitofwork.py b/test/orm/test_unitofwork.py index 67a11e3662..386280a503 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) -- 2.47.3