]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
adjustment for pysybase
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 18 Mar 2010 16:08:39 +0000 (16:08 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 18 Mar 2010 16:08:39 +0000 (16:08 +0000)
test/sql/test_types.py

index 56eca39ac559116f86af187d98aa573d64e81f6a..65260a7aa5055ed9b5048920af809a0e199bdffa 100644 (file)
@@ -1144,7 +1144,7 @@ class NumericTest(TestBase, AssertsExecutionResults):
 
             ret = set([row[0] for row in testing.db.execute(t.select()).fetchall()])
             
-            if testing.against('sqlite'):
+            if testing.against('sqlite', 'sybase+pysybase'):
                 numbers = set(round_decimal(n, 11) for n in numbers)
                 ret = set(round_decimal(n, 11) for n in ret)
             else: