diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2022-02-13 20:37:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-02-13 20:37:12 +0000 |
commit | d6b3c82b0c329730bcaff42b4bb39dba83acb536 (patch) | |
tree | d6b7f744a35c8d89615eeb0504ee7a4193f95642 /test/orm/test_options.py | |
parent | 260ade78a70d51378de9e7b9456bfe6218859b6c (diff) | |
parent | e545298e35ea9f126054b337e4b5ba01988b29f7 (diff) | |
download | sqlalchemy-d6b3c82b0c329730bcaff42b4bb39dba83acb536.tar.gz |
Merge "establish mypy / typing approach for v2.0" into main
Diffstat (limited to 'test/orm/test_options.py')
-rw-r--r-- | test/orm/test_options.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/orm/test_options.py b/test/orm/test_options.py index e74ffeced..96759e388 100644 --- a/test/orm/test_options.py +++ b/test/orm/test_options.py @@ -930,7 +930,7 @@ class OptionsNoPropTest(_fixtures.FixtureTest): [Item], lambda: (load_only(Item.keywords),), 'Can\'t apply "column loader" strategy to property ' - '"Item.keywords", which is a "relationship property"; this ' + '"Item.keywords", which is a "relationship"; this ' 'loader strategy is intended to be used with a "column property".', ) @@ -942,7 +942,7 @@ class OptionsNoPropTest(_fixtures.FixtureTest): lambda: (joinedload(Keyword.id).joinedload(Item.keywords),), 'Can\'t apply "joined loader" strategy to property "Keyword.id", ' 'which is a "column property"; this loader strategy is intended ' - 'to be used with a "relationship property".', + 'to be used with a "relationship".', ) def test_option_against_wrong_multi_entity_type_attr_two(self): @@ -953,7 +953,7 @@ class OptionsNoPropTest(_fixtures.FixtureTest): lambda: (joinedload(Keyword.keywords).joinedload(Item.keywords),), 'Can\'t apply "joined loader" strategy to property ' '"Keyword.keywords", which is a "column property"; this loader ' - 'strategy is intended to be used with a "relationship property".', + 'strategy is intended to be used with a "relationship".', ) def test_option_against_wrong_multi_entity_type_attr_three(self): |