Skip to content

Commit

Permalink
REDIS_ZADD: Fix test name
Browse files Browse the repository at this point in the history
avoid using "_" in test name "Zadd_gt_lt" according to Googletest FAQ
  • Loading branch information
Greenvi4 committed Nov 29, 2024
1 parent 6834de3 commit 09a3eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/src/storages/redis/client_redistest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ UTEST_F(RedisClientTest, Zadd) {
EXPECT_FALSE(client->ZaddIncrExisting("zset", 1.1, "five", {}).Get().has_value());
}

UTEST_F(RedisClientTest, Zadd_gt_lt) {
UTEST_F(RedisClientTest, ZaddGtLt) {
Version since{6, 2, 0};
if (!CheckVersion(since)) GTEST_SKIP() << SkipMsgByVersion("Zadd gt/lt", since);

Expand Down

0 comments on commit 09a3eef

Please sign in to comment.