Skip to content

Commit

Permalink
clang format issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MaheshMadushan committed Jan 15, 2024
1 parent eeaf0df commit c484700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cppunit/types/zset_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ TEST_F(RedisZSetTest, Diff) {
EXPECT_EQ(2, mscores.size());
std::vector<MemberScore> expected_mscores = {{"b", -100.1}, {"d", 1.234}};
int index = 0;
for (const auto& mscore : expected_mscores) {
for (const auto &mscore : expected_mscores) {
EXPECT_EQ(mscore.member, mscores[index].member);
EXPECT_EQ(mscore.score, mscores[index].score);
index++;
Expand Down

0 comments on commit c484700

Please sign in to comment.