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/test_compiler.py | |
parent | a3cd517c95e5f341c711c41474de14db97bb7778 (diff) | |
download | sqlalchemy-ab1c25266dd49f087b5fff316b6ba6fb610b1d35.tar.gz |
renamed aggregatefilter to funcfilter, since it is that
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r-- | test/sql/test_compiler.py | 2 |
1 files changed, 1 insertions, 1 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)" |