From b5314837714647cf3fab8dc039298f2ac0a26378 Mon Sep 17 00:00:00 2001 From: "Arrobo, Gabriel" Date: Mon, 19 Aug 2024 19:38:42 -0700 Subject: [PATCH] Address linter issues Signed-off-by: Arrobo, Gabriel --- pkg/fake_bess/fake_bess.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/fake_bess/fake_bess.go b/pkg/fake_bess/fake_bess.go index 0e6e74ad6..0cf43bf6e 100644 --- a/pkg/fake_bess/fake_bess.go +++ b/pkg/fake_bess/fake_bess.go @@ -26,7 +26,7 @@ func NewFakeBESS() *FakeBESS { // Run starts and runs the BESS gRPC server on the given address. Blocking until Stop is called. func (b *FakeBESS) Run(address string) error { - listener, err := net.Listen("tcp", fmt.Sprintf(address)) + listener, err := net.Listen("tcp", fmt.Sprintln(address)) if err != nil { return err }