diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-06-29 19:50:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-06-29 19:50:29 +0000 |
commit | b99cfc7cdc36a7452eb15f4b20989d1679bad11a (patch) | |
tree | 41d8993b47f4a6cc03c028ea7331790c92f6dce1 /test/dialect/postgresql/test_compiler.py | |
parent | 30f8843e97a49121323a4f75d9341f77c9935312 (diff) | |
parent | 2c1e517d0368934b70a571163ff56638673cc96b (diff) | |
download | sqlalchemy-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.py | 2 |
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, " |