clang warning 'https://travis-ci.org/google/googletest/jobs/340987201'
This commit is contained in:
parent
e76f4ee9fd
commit
a66d209061
|
@ -853,8 +853,8 @@ class CustomFunctorNamingTest : public TestWithParam<std::string> {};
|
||||||
TEST_P(CustomFunctorNamingTest, CustomTestNames) {}
|
TEST_P(CustomFunctorNamingTest, CustomTestNames) {}
|
||||||
|
|
||||||
struct CustomParamNameFunctor {
|
struct CustomParamNameFunctor {
|
||||||
std::string operator()(const ::testing::TestParamInfo<std::string>& info) {
|
std::string operator()(const ::testing::TestParamInfo<std::string>& inf) {
|
||||||
return info.param;
|
return inf.param;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -893,8 +893,8 @@ TEST_P(CustomLambdaNamingTest, CustomTestNames) {}
|
||||||
INSTANTIATE_TEST_CASE_P(CustomParamNameLambda,
|
INSTANTIATE_TEST_CASE_P(CustomParamNameLambda,
|
||||||
CustomLambdaNamingTest,
|
CustomLambdaNamingTest,
|
||||||
Values(std::string("LambdaName")),
|
Values(std::string("LambdaName")),
|
||||||
[](const ::testing::TestParamInfo<std::string>& info) {
|
[](const ::testing::TestParamInfo<std::string>& inf) {
|
||||||
return info.param;
|
return inf.param;
|
||||||
});
|
});
|
||||||
|
|
||||||
#endif // GTEST_LANG_CXX11
|
#endif // GTEST_LANG_CXX11
|
||||||
|
|
Loading…
Reference in New Issue
Block a user