From 2461743991f9aa53e9a3625eafcbacd81a3c74cd Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 27 Mar 2026 21:30:13 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 890778982 Change-Id: Idef51b737a250560d0b71130e6e87b6249d8c47a --- googlemock/test/gmock-actions_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/googlemock/test/gmock-actions_test.cc b/googlemock/test/gmock-actions_test.cc index 75965324d..1bc304088 100644 --- a/googlemock/test/gmock-actions_test.cc +++ b/googlemock/test/gmock-actions_test.cc @@ -1310,7 +1310,7 @@ TEST(AssignTest, Int) { TEST(AssignTest, String) { ::std::string x; - Action a = Assign(&x, "Hello, world"); + Action a = Assign(&x, "Hello, world"); a.Perform(std::make_tuple()); EXPECT_EQ("Hello, world", x); } @@ -1662,14 +1662,14 @@ class SetErrnoAndReturnTest : public testing::Test { }; TEST_F(SetErrnoAndReturnTest, Int) { - Action a = SetErrnoAndReturn(ENOTTY, -5); + Action a = SetErrnoAndReturn(ENOTTY, -5); EXPECT_EQ(-5, a.Perform(std::make_tuple())); EXPECT_EQ(ENOTTY, errno); } TEST_F(SetErrnoAndReturnTest, Ptr) { int x; - Action a = SetErrnoAndReturn(ENOTTY, &x); + Action a = SetErrnoAndReturn(ENOTTY, &x); EXPECT_EQ(&x, a.Perform(std::make_tuple())); EXPECT_EQ(ENOTTY, errno); }