diff options
-rw-r--r-- | test.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -325,14 +325,14 @@ static void test_reply_reader(void) { test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS); redisReplyReaderFree(reader); - test("Properly reset state after protocol error: "); + test("Don't reset state after protocol error: "); reader = redisReplyReaderCreate(); redisReplyReaderSetReplyObjectFunctions(reader,NULL); redisReplyReaderFeed(reader,(char*)"x",1); ret = redisReplyReaderGetReply(reader,&reply); assert(ret == REDIS_ERR); ret = redisReplyReaderGetReply(reader,&reply); - test_cond(ret == REDIS_OK && reply == NULL) + test_cond(ret == REDIS_ERR && reply == NULL); } static void test_throughput(void) { |