Skip to content

Commit

Permalink
tests(dev): fixed mocked method declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
iMeaNz committed Dec 3, 2024
1 parent 719d6b8 commit 307b9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/renderer/contexts/opengl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ namespace nexo::renderer {
MOCK_METHOD(void, bind, (), (const, override));
MOCK_METHOD(void, unbind, (), (const, override));
MOCK_METHOD(void, setLayout, (const BufferLayout &layout), (override));
MOCK_METHOD(const BufferLayout, getLayout, (), (const, override));
MOCK_METHOD(BufferLayout, getLayout, (), (const, override));
MOCK_METHOD(void, setData, (void *data, unsigned int size), (override));
MOCK_METHOD(unsigned int, getId, (), (const override));
};
Expand Down

0 comments on commit 307b9f1

Please sign in to comment.