Skip to content
Snippets Groups Projects
Commit 99d6593d authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #638 from vjpai/expecteq

EXPECT_EQ sign issue...
parents b73578f4 dbbdda52
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,7 @@ TEST_F(PublisherTest, TestPublisher) { ...@@ -138,7 +138,7 @@ TEST_F(PublisherTest, TestPublisher) {
std::vector<grpc::string> topics; std::vector<grpc::string> topics;
EXPECT_TRUE(publisher_->ListTopics(kProjectId, &topics).IsOk()); EXPECT_TRUE(publisher_->ListTopics(kProjectId, &topics).IsOk());
EXPECT_EQ(topics.size(), 1); EXPECT_EQ(topics.size(), static_cast<size_t>(1));
EXPECT_EQ(topics[0], kTopic); EXPECT_EQ(topics[0], kTopic);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment