]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix to from clause in unittest query...somehow this didnt fail on pg 8.0, but fails...
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 31 Aug 2006 23:41:49 +0000 (23:41 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 31 Aug 2006 23:41:49 +0000 (23:41 +0000)
test/sql/testtypes.py

index 4b4c8d47c8c961e6825ba944bb2692b029354a8f..a3c1c0f1826fe7bdbced5d38aca9a793ab9e88ea 100644 (file)
@@ -311,7 +311,7 @@ class TimezoneTest(AssertMixin):
         # get a date without a tzinfo
         somedate = datetime.datetime(2005, 10,20, 11, 52, 00)
         notztable.insert().execute(id=1, name='row1', date=somedate)
-        c = notztable.update(tztable.c.id==1).execute(name='newname')
+        c = notztable.update(notztable.c.id==1).execute(name='newname')
         x = c.last_updated_params()
         print x['date'] == somedate