summaryrefslogtreecommitdiff
path: root/tests/aggregation/tests.py
diff options
context:
space:
mode:
authorDavid Wobrock <david.wobrock@gmail.com>2021-09-24 22:05:02 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-09-29 20:52:59 +0200
commitaab76433ed585ebe997b94547e0d790605e01ad9 (patch)
tree48329f6a7adebfd0802120150f329d0aac7830d1 /tests/aggregation/tests.py
parentcebac15931173b2fc5d8f2b3f4bd69fe1a8a856d (diff)
[4.0.x] Fixed #33141 -- Renamed Expression.empty_aggregate_value to empty_result_set_value.
Backport of ad36a198a12df4dff65992191b3eb0a474e2daac from main
Diffstat (limited to 'tests/aggregation/tests.py')
-rw-r--r--tests/aggregation/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/aggregation/tests.py b/tests/aggregation/tests.py
index 85742dcb9c..72575a526c 100644
--- a/tests/aggregation/tests.py
+++ b/tests/aggregation/tests.py
@@ -1367,7 +1367,7 @@ class AggregateTestCase(TestCase):
'books_count': 0,
}
)
- # Expression without empty_aggregate_value forces queries to be
+ # Expression without empty_result_set_value forces queries to be
# executed even if they would return an empty result set.
raw_books_count = Func('book', function='COUNT')
raw_books_count.contains_aggregate = True