Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb committed Jul 8, 2021
1 parent 13225e3 commit 5be7499
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exporters/jaeger/test/jaeger_recordable_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ TEST(JaegerSpanRecordable, AddEvent)
size_t index = 0;
EXPECT_EQ(tags[index].key, "event");
EXPECT_EQ(tags[index++].vStr, "Test Event");
while (index <= 1)
while (index <= kNumAttributes)
{
EXPECT_EQ(tags[index].key, keys[index - 1]);
// EXPECT_EQ(tags[index].vLong, values[index-1]);
EXPECT_EQ(tags[index].vLong, values[index - 1]);
index++;
}
}
Expand Down

0 comments on commit 5be7499

Please sign in to comment.