summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/assertions.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-06-18 21:52:25 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-06-18 21:52:25 +0000
commit5785b59482498996835dc148fa5f77db36a0705a (patch)
tree3ea4bc10de478f78fcfdb4b7be4053412b181738 /lib/sqlalchemy/testing/assertions.py
parentbe576e7d88b6038781e52f7ef79799dbad09cd54 (diff)
parent64b9d9886f0bf4bbb5f0d019ecdbe579cd495141 (diff)
downloadsqlalchemy-5785b59482498996835dc148fa5f77db36a0705a.tar.gz
Merge "create new approach for deeply nested post loader options" into main
Diffstat (limited to 'lib/sqlalchemy/testing/assertions.py')
-rw-r--r--lib/sqlalchemy/testing/assertions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/assertions.py b/lib/sqlalchemy/testing/assertions.py
index f78b3f668..937706363 100644
--- a/lib/sqlalchemy/testing/assertions.py
+++ b/lib/sqlalchemy/testing/assertions.py
@@ -811,7 +811,7 @@ class AssertsExecutionResults:
return self.assert_sql_execution(db, callable_, *newrules)
def assert_sql_count(self, db, callable_, count):
- self.assert_sql_execution(
+ return self.assert_sql_execution(
db, callable_, assertsql.CountStatements(count)
)