Skip to content

Commit

Permalink
=> ->>=
Browse files Browse the repository at this point in the history
  • Loading branch information
daTokenizer committed Nov 29, 2016
1 parent 389f2ba commit 90d5f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -1064,14 +1064,14 @@ int TestTimeToNext(RedisModuleCtx *ctx)
RedisModuleCallReply *check1 =
RedisModule_Call(ctx, "REDE.ttn", "c", "TEST_DEHYDRATOR_ttn");
RMUtil_Assert(RedisModule_CallReplyType(check1) != REDISMODULE_REPLY_ERROR);
RMUtil_Assert(RedisModule_CallReplyInteger(check1) => 3000);
RMUtil_Assert(RedisModule_CallReplyInteger(check1) >= 3000);

sleep(2);

RedisModuleCallReply *check2 =
RedisModule_Call(ctx, "REDE.ttn", "c", "TEST_DEHYDRATOR_ttn");
RMUtil_Assert(RedisModule_CallReplyType(check2) != REDISMODULE_REPLY_ERROR);
RMUtil_Assert(RedisModule_CallReplyInteger(check2) => 1000);
RMUtil_Assert(RedisModule_CallReplyInteger(check2) >= 1000);

sleep(2);

Expand Down

0 comments on commit 90d5f3c

Please sign in to comment.