diff options
Diffstat (limited to 'test/sql/test_insert_exec.py')
-rw-r--r-- | test/sql/test_insert_exec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_insert_exec.py b/test/sql/test_insert_exec.py index 85cdeca4b..2021c030c 100644 --- a/test/sql/test_insert_exec.py +++ b/test/sql/test_insert_exec.py @@ -112,7 +112,7 @@ class InsertExecTest(fixtures.TablesTest): ) row = engine.execute(table_.select(criterion)).first() for c in table_.c: - ret[c.key] = row[c] + ret[c.key] = row._mapping[c] return ret if testing.against("firebird", "postgresql", "oracle", "mssql"): |