diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 11:10:41 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-28 11:10:41 -0500 |
commit | 52167e1c37a6d704f01dc15bcb14ec2489979457 (patch) | |
tree | 5752aec7ba3e2abb2cad53045bad45c516eefdb0 /test/orm/inheritance/test_basic.py | |
parent | 20418096d5862ed40f22b6c7b7cc53dd212bbd21 (diff) | |
download | sqlalchemy-52167e1c37a6d704f01dc15bcb14ec2489979457.tar.gz |
- Query.get() will raise if the number of params
in a composite key is too large, as well as too
small. [ticket:1977]
- the above change smoked out an old mistake in a unit test.
Diffstat (limited to 'test/orm/inheritance/test_basic.py')
-rw-r--r-- | test/orm/inheritance/test_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/inheritance/test_basic.py b/test/orm/inheritance/test_basic.py index c6dec16b7..cc7dcba05 100644 --- a/test/orm/inheritance/test_basic.py +++ b/test/orm/inheritance/test_basic.py @@ -772,7 +772,7 @@ class DistinctPKTest(_base.MappedTest): mapper(Employee, employee_table, inherits=person_mapper, properties={'pid':person_table.c.id, 'eid':employee_table.c.id}) - self._do_test(True) + self._do_test(False) def test_explicit_composite_pk(self): person_mapper = mapper(Person, person_table) |