diff options
Diffstat (limited to 'test/sql/test_selectable.py')
-rw-r--r-- | test/sql/test_selectable.py | 4 |
1 files changed, 3 insertions, 1 deletions
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 |