From 0285b5691518323d67abb9b168a37e914f12fbdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1nos=20Benjamin=20Antal?= <benjamin.antal@memgraph.io> Date: Fri, 20 Jan 2023 23:01:23 +0100 Subject: [PATCH] Fix compilation error --- tests/unit/mock_helpers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/mock_helpers.hpp b/tests/unit/mock_helpers.hpp index c522b8602..302b2ff55 100644 --- a/tests/unit/mock_helpers.hpp +++ b/tests/unit/mock_helpers.hpp @@ -58,7 +58,7 @@ class MockedLogicalOperator : public plan::LogicalOperator { class MockedCursor : public plan::Cursor { public: MOCK_METHOD(bool, Pull, (Frame &, expr::ExecutionContext &)); - MOCK_METHOD(void, PullMultiple, (MultiFrame &, expr::ExecutionContext &)); + MOCK_METHOD(bool, PullMultiple, (MultiFrame &, expr::ExecutionContext &)); MOCK_METHOD(void, Reset, ()); MOCK_METHOD(void, Shutdown, ()); };