summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/assertions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/assertions.py')
-rw-r--r--lib/sqlalchemy/testing/assertions.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/sqlalchemy/testing/assertions.py b/lib/sqlalchemy/testing/assertions.py
index ba4a2de72..0ea9f067e 100644
--- a/lib/sqlalchemy/testing/assertions.py
+++ b/lib/sqlalchemy/testing/assertions.py
@@ -398,9 +398,11 @@ class AssertsCompiledSQL(object):
from sqlalchemy import orm
if isinstance(clause, orm.Query):
- context = clause._compile_context()
- context.statement._label_style = LABEL_STYLE_TABLENAME_PLUS_COL
- clause = context.statement
+ compile_state = clause._compile_state()
+ compile_state.statement._label_style = (
+ LABEL_STYLE_TABLENAME_PLUS_COL
+ )
+ clause = compile_state.statement
elif isinstance(clause, orm.persistence.BulkUD):
with mock.patch.object(clause, "_execute_stmt") as stmt_mock:
clause.exec_()