aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing
diff options
context:
space:
mode:
authorantervis <antervis@yandex-team.ru>2022-02-10 16:49:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:48 +0300
commitb3eef5b52437f05851a3e8fb489a68db0132657b (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/testing
parent0942f9eeaefcfc84db83fa240d8ed52b99345e7d (diff)
downloadydb-b3eef5b52437f05851a3e8fb489a68db0132657b.tar.gz
Restoring authorship annotation for <antervis@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/testing')
-rw-r--r--library/cpp/testing/gmock_in_unittest/example_ut/example_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/testing/gmock_in_unittest/example_ut/example_ut.cpp b/library/cpp/testing/gmock_in_unittest/example_ut/example_ut.cpp
index 788b252e5e..97f19050e4 100644
--- a/library/cpp/testing/gmock_in_unittest/example_ut/example_ut.cpp
+++ b/library/cpp/testing/gmock_in_unittest/example_ut/example_ut.cpp
@@ -21,8 +21,8 @@ public:
class TTestMock: public ITestIface {
public:
- MOCK_METHOD(void, Func1, (), (override));
- MOCK_METHOD(int, Func2, (const TString&), (const, override));
+ MOCK_METHOD(void, Func1, (), (override));
+ MOCK_METHOD(int, Func2, (const TString&), (const, override));
};
using namespace testing;