Skip to content

Commit

Permalink
Migrate from googletest 1.8 to googletest 1.10 (microsoft#67)
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookincubator/hsthrift#67

Updating `googletest` from `1.8.0` to `1.10.0`

Reviewed By: mzlee, igorsugak, luciang, meyering, r-barnes

Differential Revision: D34351084

fbshipit-source-id: 939b3985ab63a06b6d511ec8711c2d5863bdfea8
  • Loading branch information
dimitribouche authored and Saadnajmi committed Jan 14, 2023
1 parent 51c31bd commit e6b1ee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReactCommon/react/test_utils/MockSurfaceHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class MockSurfaceHandler : public SurfaceHandler {
public:
MockSurfaceHandler() : SurfaceHandler("moduleName", 0){};

MOCK_QUALIFIED_METHOD1(setDisplayMode, const noexcept, void(DisplayMode));
MOCK_QUALIFIED_METHOD0(getSurfaceId, const noexcept, SurfaceId());
MOCK_METHOD(void, setDisplayMode, (DisplayMode), (const, noexcept));
MOCK_METHOD(SurfaceId, getSurfaceId, (), (const, noexcept));
};

} // namespace react
Expand Down

0 comments on commit e6b1ee9

Please sign in to comment.