Skip to content

Commit

Permalink
Fix mock class
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnick committed Nov 10, 2023
1 parent 2daa6a3 commit debf571
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class MockIVariableState : public ov::IVariableState {
MOCK_METHOD(const std::string&, get_name, (), (const));
MOCK_METHOD(void, reset, ());
MOCK_METHOD(void, set_state, (const ov::SoPtr<ov::ITensor>&));
MOCK_METHOD(const ov::SoPtr<ov::ITensor>&, get_state, (), (const));
MOCK_METHOD(ov::SoPtr<ov::ITensor>, get_state, (), (const));
};

} // namespace ov

0 comments on commit debf571

Please sign in to comment.