Skip to content

Commit 3de2e6b

Browse files
Improve code coverage for aggregation tests (#1713)
1 parent 20c5f0f commit 3de2e6b

File tree

2 files changed

+264
-64
lines changed

2 files changed

+264
-64
lines changed

redis/commands/search/aggregation.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -345,12 +345,6 @@ def cursor(self, count=0, max_idle=0.0):
345345
self._cursor = args
346346
return self
347347

348-
def _limit_2_args(self, limit):
349-
if limit[1]:
350-
return ["LIMIT"] + [str(x) for x in limit]
351-
else:
352-
return []
353-
354348
def build_args(self):
355349
# @foo:bar ...
356350
ret = [self._query]

0 commit comments

Comments
 (0)