From bc45fa350a02da5f24d866078abed471cd98f15b Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 9 Feb 2012 21:16:53 -0500 Subject: - got m2m, local_remote_pairs, etc. working - using new traversal that returns the product of both sides of a binary, starting to work with (a+b) == (c+d) types of joins. primaryjoins on functions working - annotations working, including reversing local/remote when doing backref --- test/sql/test_selectable.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/sql/test_selectable.py') diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py index 6d85f7c4f..4f1f39014 100644 --- a/test/sql/test_selectable.py +++ b/test/sql/test_selectable.py @@ -1151,5 +1151,7 @@ class AnnotationsTest(fixtures.TestBase): assert b2.left is not bin.left assert b3.left is not b2.left is not bin.left assert b4.left is bin.left # since column is immutable - assert b4.right is not bin.right is not b2.right is not b3.right + assert b4.right is bin.right + assert b2.right is not bin.right + assert b3.right is b4.right is bin.right -- cgit v1.2.1