1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

fix TS.CREATERULE

This commit is contained in:
leibale
2021-11-29 12:47:17 -05:00
parent 7cce81fb1e
commit a743ca6737
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ describe('CREATERULE', () => {
it('transformArguments', () => {
assert.deepEqual(
transformArguments('source', 'destination', TimeSeriesAggregationType.AVARAGE, 1),
['TS.CREATERULE', 'source', 'destination', 'avg', 1]
['TS.CREATERULE', 'source', 'destination', 'AGGREGATION', 'avg', '1']
);
});