Skip to content

Commit b081667

Browse files
authored
Update test_util.h
1 parent 294ee78 commit b081667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rmutil/test_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#define RMUtil_Assert(expr) if (!(expr)) { fprintf (stderr, "Assertion '%s' Failed\n", __STRING(expr)); return REDISMODULE_ERR; }
2121

22-
#define #define RMUtil_AssertNullReply(rep) RMUtil_Assert(RedisModule_CreateStringFromCallReply(rep) == NULL)
22+
#define RMUtil_AssertNullReply(rep) RMUtil_Assert(RedisModule_CreateStringFromCallReply(rep) == NULL)
2323

2424
#define RMUtil_AssertReplyEquals(rep, cstr) RMUtil_Assert( \
2525
RMUtil_StringEquals(RedisModule_CreateStringFromCallReply(rep), RedisModule_CreateString(ctx, cstr, strlen(cstr))) \

0 commit comments

Comments
 (0)