From 4318b42e8987f2da0909bbc0618cd5c891f610ee Mon Sep 17 00:00:00 2001 From: andronache Date: Mon, 12 Apr 2021 16:17:04 +0300 Subject: [PATCH] Cover tests in dispatchers --- dispatchers/dispatchers_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/dispatchers/dispatchers_test.go b/dispatchers/dispatchers_test.go index e3839072d..ab1bfcde6 100644 --- a/dispatchers/dispatchers_test.go +++ b/dispatchers/dispatchers_test.go @@ -50,4 +50,5 @@ func TestDispatcherCall2(t *testing.T) { if err := dS.Call(context.Background(), "DispatcherService.Pong", &utils.CGREvent{}, &reply); err == nil || err.Error() != rpcclient.ErrUnsupporteServiceMethod.Error() { t.Error(err) } + dS.Shutdown() }