Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
codesigner committed Nov 29, 2022
1 parent 4c1d1dc commit 14f9e61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/test/MetaClientTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ TEST(MetaClientTest, TagIndexTest) {
client->createTagIndex(space, "tag_not_exist_index", "tag_not_exist", std::move(fields))
.get();
ASSERT_FALSE(result.ok());
ASSERT_EQ(Status::Error("not existed!"), result.status());
ASSERT_EQ(Status::TagNotFound("not existed!"), result.status());
}
{
std::vector<cpp2::IndexFieldDef> fields;
Expand Down

0 comments on commit 14f9e61

Please sign in to comment.