Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
areusch committed Apr 18, 2022
1 parent 8bbb750 commit 131722e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cpp/aot_metadata_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ std::string ExplainDiscoveredNameEq(bool negation, std::string expected_name) {
} // namespace

MATCHER_P(DiscoveredNameEq, expected_name, ExplainDiscoveredNameEq(negation, expected_name)) {
return std::string {std::get<0>(arg)} == expected_name;
return std::string(std::get<0>(arg)) == expected_name;
}

TEST(DiscoverArraysVisitor, DiscoverArrays) {
Expand Down

0 comments on commit 131722e

Please sign in to comment.