From 7c1e57879d316461bef0dc183ebb50b6aa9496e1 Mon Sep 17 00:00:00 2001 From: Lele Gaifax Date: Tue, 18 Dec 2007 13:03:55 +0000 Subject: [PATCH] Add Firebird to the list of DBs that needs explicit sequences --- test/testlib/testing.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/testlib/testing.py b/test/testlib/testing.py index d5fb3b4e5d..63b1cba70b 100644 --- a/test/testlib/testing.py +++ b/test/testlib/testing.py @@ -430,8 +430,7 @@ class AssertMixin(PersistTest): def assert_sql(self, db, callable_, list, with_sequences=None): global testdata testdata = TestData() - if with_sequences is not None and (config.db.name == 'postgres' or - config.db.name == 'oracle'): + if with_sequences is not None and config.db.name in ('firebird', 'oracle', 'postgres'): testdata.set_assert_list(self, with_sequences) else: testdata.set_assert_list(self, list) -- 2.47.3