summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_timeseries.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_asyncio/test_timeseries.py')
-rw-r--r--tests/test_asyncio/test_timeseries.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_asyncio/test_timeseries.py b/tests/test_asyncio/test_timeseries.py
index ef58226..a710993 100644
--- a/tests/test_asyncio/test_timeseries.py
+++ b/tests/test_asyncio/test_timeseries.py
@@ -240,7 +240,7 @@ async def test_range_advanced(modclient: redis.Redis):
assert [(0, 5.0), (5, 6.0)] == await modclient.ts().range(
1, 0, 10, aggregation_type="count", bucket_size_msec=10, align=5
)
- assert [(0, 2.5500000000000003), (10, 3.0)] == await modclient.ts().range(
+ assert [(0, 2.55), (10, 3.0)] == await modclient.ts().range(
1, 0, 10, aggregation_type="twa", bucket_size_msec=10
)