From acf57209ccbd67fa96644abe5aef65f58264c112 Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Thu, 30 Nov 2017 09:08:17 +0100 Subject: Removes unnecessary returned func from WaitReady Change-Id: I34889c8c79fa8ef7a196f8d067edca7f1cb5ad33 Signed-off-by: Ondrej Fabry --- adapter/mock/mock_adapter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'adapter/mock/mock_adapter.go') diff --git a/adapter/mock/mock_adapter.go b/adapter/mock/mock_adapter.go index f85f17d..5407696 100644 --- a/adapter/mock/mock_adapter.go +++ b/adapter/mock/mock_adapter.go @@ -295,8 +295,8 @@ func (a *VppAdapter) SetMsgCallback(cb func(context uint32, msgID uint16, data [ } // WaitReady mocks waiting for VPP -func (a *VppAdapter) WaitReady() func() error { - return func() error { return nil } +func (a *VppAdapter) WaitReady() error { + return nil } // MockReply stores a message to be returned when the next request comes. It is a FIFO queue - multiple replies -- cgit 1.2.3-korg