summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql/test_compiler.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-06-29 19:50:29 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-06-29 19:50:29 +0000
commitb99cfc7cdc36a7452eb15f4b20989d1679bad11a (patch)
tree41d8993b47f4a6cc03c028ea7331790c92f6dce1 /test/dialect/postgresql/test_compiler.py
parent30f8843e97a49121323a4f75d9341f77c9935312 (diff)
parent2c1e517d0368934b70a571163ff56638673cc96b (diff)
downloadsqlalchemy-b99cfc7cdc36a7452eb15f4b20989d1679bad11a.tar.gz
Merge "Rename Table.tometadata to to_metadata"
Diffstat (limited to 'test/dialect/postgresql/test_compiler.py')
-rw-r--r--test/dialect/postgresql/test_compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_compiler.py b/test/dialect/postgresql/test_compiler.py
index b4ac69d2d..73d767602 100644
--- a/test/dialect/postgresql/test_compiler.py
+++ b/test/dialect/postgresql/test_compiler.py
@@ -829,7 +829,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
)
m2 = MetaData()
- tbl2 = tbl.tometadata(m2)
+ tbl2 = tbl.to_metadata(m2)
self.assert_compile(
schema.CreateTable(tbl2),
"CREATE TABLE testtbl (room SERIAL NOT NULL, "