summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-06-01 01:18:00 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-06-01 01:18:00 +0000
commitc60b59868206da546fde1a64bd9c063ea0bd9e09 (patch)
tree4791161e24cd98deb22e0f454a0c2d43161cd45e
parent89a9c23b37c501471ed12f88bc86e50fd9725495 (diff)
downloadsqlalchemy-c60b59868206da546fde1a64bd9c063ea0bd9e09.tar.gz
more test adjustments for firebird
-rw-r--r--test/indexes.py2
-rw-r--r--test/selectresults.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/indexes.py b/test/indexes.py
index a111b34e5..f1e55e406 100644
--- a/test/indexes.py
+++ b/test/indexes.py
@@ -53,7 +53,7 @@ class IndexTest(testbase.AssertMixin):
# Check that the table is useable. This is mostly for pg,
# which can be somewhat sticky with mixed-case identifiers
- employees.insert().execute(firstName='Joe', lastName='Smith')
+ employees.insert().execute(firstName='Joe', lastName='Smith', id=0)
ss = employees.select().execute().fetchall()
assert ss[0].firstName == 'Joe'
assert ss[0].lastName == 'Smith'
diff --git a/test/selectresults.py b/test/selectresults.py
index 6bd619f3a..3f5bcff92 100644
--- a/test/selectresults.py
+++ b/test/selectresults.py
@@ -58,7 +58,7 @@ class SelectResultsTest(PersistTest):
# this one fails in mysql as the result comes back as a string
assert self.res.filter(foo.c.bar<30).sum(foo.c.bar) == 435
- @testbase.unsupported('postgres', 'mysql')
+ @testbase.unsupported('postgres', 'mysql', 'firebird')
def test_aggregate_2(self):
# this one fails with postgres, the floating point comparison fails
assert self.res.filter(foo.c.bar<30).avg(foo.c.bar) == 14.5