diff options
Diffstat (limited to 'test/manager_mock.hpp')
-rw-r--r-- | test/manager_mock.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/manager_mock.hpp b/test/manager_mock.hpp index 73d4d07..bfb3348 100644 --- a/test/manager_mock.hpp +++ b/test/manager_mock.hpp @@ -20,8 +20,8 @@ class ManagerMock : public ManagerInterface MOCK_METHOD0(buildBlobList, uint32_t()); MOCK_METHOD1(getBlobId, std::string(uint32_t)); MOCK_METHOD3(open, bool(uint16_t, const std::string&, uint16_t*)); - MOCK_METHOD2(stat, bool(const std::string&, struct BlobMeta*)); - MOCK_METHOD2(stat, bool(uint16_t, struct BlobMeta*)); + MOCK_METHOD2(stat, bool(const std::string&, BlobMeta*)); + MOCK_METHOD2(stat, bool(uint16_t, BlobMeta*)); MOCK_METHOD2(commit, bool(uint16_t, const std::vector<uint8_t>&)); MOCK_METHOD1(close, bool(uint16_t)); MOCK_METHOD3(read, std::vector<uint8_t>(uint16_t, uint32_t, uint32_t)); |