From bcfb12f813983d3215a6e2513cfc0b64534d8efe Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Thu, 3 Sep 2020 22:11:30 +0200 Subject: Raname ``mustexit`` to ``must_exist`` :class:`_schema.Table` parameter ``mustexist`` has been renamed to :paramref:`_schema.Table.must_exist` and will now warn when used. Change-Id: I0b0ca6021f9f7cfbe2040bbc1125a2236ac79f53 --- test/dialect/postgresql/test_reflection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/dialect/postgresql/test_reflection.py') diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index ec9328c2f..45c99bfdc 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -569,7 +569,7 @@ class ReflectionTest(fixtures.TestBase): addresses = Table( "email_addresses", meta2, autoload=True, schema="test_schema" ) - users = Table("users", meta2, mustexist=True, schema="test_schema") + users = Table("users", meta2, must_exist=True, schema="test_schema") j = join(users, addresses) self.assert_( (users.c.user_id == addresses.c.remote_user_id).compare(j.onclause) -- cgit v1.2.1