From 7866eec484a6cbd69b8390fb6302e60b002d2bf5 Mon Sep 17 00:00:00 2001 From: andronache Date: Thu, 28 Jan 2021 16:29:52 +0200 Subject: [PATCH] Coverage tests in console --- console/ping.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/console/ping.go b/console/ping.go index 5069f4045..23c625c59 100644 --- a/console/ping.go +++ b/console/ping.go @@ -19,6 +19,7 @@ along with this program. If not, see package console import ( + "fmt" "strings" "github.com/cgrates/cgrates/utils" @@ -89,6 +90,7 @@ func (self *CmdApierPing) RpcMethod() string { return utils.ActionSv1Ping default: } + fmt.Println("yay") return self.rpcMethod }