aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock-more-actions_test.cc
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-04-13 09:41:33 -0400
committerGitHub <noreply@github.com>2018-04-13 09:41:33 -0400
commit38de61d73b412a4b80f3df52433754b7ba4d703c (patch)
tree2dbf8c8339c104b9479bd437a3a6705760eff602 /googlemock/test/gmock-more-actions_test.cc
parent0957cce368316577aae5ddfffcb67f24621d69e7 (diff)
parent6d31084797470e03df2e5ff490a731bf5feb12a0 (diff)
downloadgoogletest-38de61d73b412a4b80f3df52433754b7ba4d703c.tar.gz
googletest-38de61d73b412a4b80f3df52433754b7ba4d703c.tar.bz2
googletest-38de61d73b412a4b80f3df52433754b7ba4d703c.zip
Merge pull request #1569 from gennadiycivil/master
merging
Diffstat (limited to 'googlemock/test/gmock-more-actions_test.cc')
-rw-r--r--googlemock/test/gmock-more-actions_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/googlemock/test/gmock-more-actions_test.cc b/googlemock/test/gmock-more-actions_test.cc
index 911d034a..b13518aa 100644
--- a/googlemock/test/gmock-more-actions_test.cc
+++ b/googlemock/test/gmock-more-actions_test.cc
@@ -328,7 +328,8 @@ TEST(InvokeTest, FunctionThatTakes10Arguments) {
// Tests using Invoke() with functions with parameters declared as Unused.
TEST(InvokeTest, FunctionWithUnusedParameters) {
Action<int(int, int, double, const std::string&)> a1 = Invoke(SumOfFirst2);
- tuple<int, int, double, std::string> dummy = make_tuple(10, 2, 5.6, std::string("hi"));
+ tuple<int, int, double, std::string> dummy =
+ make_tuple(10, 2, 5.6, std::string("hi"));
EXPECT_EQ(12, a1.Perform(dummy));
Action<int(int, int, bool, int*)> a2 =