diff options
author | Ilja Everilä <saarni@gmail.com> | 2014-09-11 15:29:33 +0300 |
---|---|---|
committer | Ilja Everilä <saarni@gmail.com> | 2014-09-11 15:29:33 +0300 |
commit | ab1c25266dd49f087b5fff316b6ba6fb610b1d35 (patch) | |
tree | 667e0f42fd95c96281617c47684594173fb00aca /test/sql | |
parent | a3cd517c95e5f341c711c41474de14db97bb7778 (diff) | |
download | sqlalchemy-ab1c25266dd49f087b5fff316b6ba6fb610b1d35.tar.gz |
renamed aggregatefilter to funcfilter, since it is that
Diffstat (limited to 'test/sql')
-rw-r--r-- | test/sql/test_compiler.py | 2 | ||||
-rw-r--r-- | test/sql/test_generative.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index 6e730ad50..7bba29563 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -2190,7 +2190,7 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL): "(ORDER BY mytable.myid + :myid_1) AS anon_1 FROM mytable" ) - def test_aggregate_filter(self): + def test_funcfilter(self): self.assert_compile( func.count(1).filter(), "count(:param_1)" diff --git a/test/sql/test_generative.py b/test/sql/test_generative.py index 1b67ab68c..6044cecb0 100644 --- a/test/sql/test_generative.py +++ b/test/sql/test_generative.py @@ -539,7 +539,7 @@ class ClauseTest(fixtures.TestBase, AssertsCompiledSQL): expr2 = CloningVisitor().traverse(expr) assert str(expr) == str(expr2) - def test_aggregatefilter(self): + def test_funcfilter(self): expr = func.count(1).filter(t1.c.col1 > 1) expr2 = CloningVisitor().traverse(expr) assert str(expr) == str(expr2) |