summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/fixtures.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-01-18 20:57:26 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2015-01-18 20:57:26 -0500
commitf5d4f2685f30817af493c32d2cf0ac77715bdb46 (patch)
tree93a0ca7cdb6a715f1f3c2162f5677b138493930e /lib/sqlalchemy/testing/fixtures.py
parentf49c367ef712d080e630ba722f96903922d7de7b (diff)
downloadsqlalchemy-f5d4f2685f30817af493c32d2cf0ac77715bdb46.tar.gz
- rework assertsql system, fixes #3293
Diffstat (limited to 'lib/sqlalchemy/testing/fixtures.py')
-rw-r--r--lib/sqlalchemy/testing/fixtures.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py
index d86049da7..48d4d9c9b 100644
--- a/lib/sqlalchemy/testing/fixtures.py
+++ b/lib/sqlalchemy/testing/fixtures.py
@@ -192,9 +192,8 @@ class TablesTest(TestBase):
def sql_count_(self, count, fn):
self.assert_sql_count(self.bind, fn, count)
- def sql_eq_(self, callable_, statements, with_sequences=None):
- self.assert_sql(self.bind,
- callable_, statements, with_sequences)
+ def sql_eq_(self, callable_, statements):
+ self.assert_sql(self.bind, callable_, statements)
@classmethod
def _load_fixtures(cls):