summaryrefslogtreecommitdiff
path: root/test/base/test_utils.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-11-25 12:20:13 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-11-25 12:20:13 -0500
commit77f641429f019d06cc467ec4e57ae94f808d70bd (patch)
tree94ddacadb8915d19d3ee3cdf7a3771fa63ba0184 /test/base/test_utils.py
parent5247c244ca6595f2685f1c0c271618eda7cb5e62 (diff)
downloadsqlalchemy-77f641429f019d06cc467ec4e57ae94f808d70bd.tar.gz
- Fixed operator precedence rules for multiple
chains of a single non-associative operator. I.e. "x - (y - z)" will compile as "x - (y - z)" and not "x - y - z". Also works with labels, i.e. "x - (y - z).label('foo')" [ticket:1984] - Single element tuple expressions inside an IN clause parenthesize correctly, also from [ticket:1984], added tests for PG - re-fix again importlater, [ticket:1983]
Diffstat (limited to 'test/base/test_utils.py')
-rw-r--r--test/base/test_utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/base/test_utils.py b/test/base/test_utils.py
index d083a8458..e7ecbec51 100644
--- a/test/base/test_utils.py
+++ b/test/base/test_utils.py
@@ -149,8 +149,6 @@ class ColumnCollectionTest(TestBase):
assert (cc1==cc2).compare(c1 == c2)
assert not (cc1==cc3).compare(c2 == c3)
-
-
class LRUTest(TestBase):
def test_lru(self):