diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-09-12 16:36:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-09-12 16:36:00 +0000 |
commit | a2f2863f5af934a94ed96539e852cb874c3203c0 (patch) | |
tree | d727d64298c887cfda2eaf55e22122b7515a173d /test/dialect/postgresql/test_reflection.py | |
parent | a9b926d1c31250312a2c89aaa78bdc5d935137f3 (diff) | |
parent | bcfb12f813983d3215a6e2513cfc0b64534d8efe (diff) | |
download | sqlalchemy-a2f2863f5af934a94ed96539e852cb874c3203c0.tar.gz |
Merge "Raname ``mustexit`` to ``must_exist``"
Diffstat (limited to 'test/dialect/postgresql/test_reflection.py')
-rw-r--r-- | test/dialect/postgresql/test_reflection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index 2a214c766..2385a8f7a 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -571,7 +571,7 @@ class ReflectionTest(AssertsCompiledSQL, 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) |