From e71d05bb2d9a6f2b7ea8344a3912a139e499aa2b Mon Sep 17 00:00:00 2001 From: Zach Bintliff Date: Wed, 18 Oct 2017 16:25:14 -0400 Subject: [PATCH] fix(vet error) --- utils/port_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/port_test.go b/utils/port_test.go index e9caa4b00..77e719613 100644 --- a/utils/port_test.go +++ b/utils/port_test.go @@ -121,7 +121,7 @@ func Test_FindPortInRangeWithUsedPorts(t *testing.T) { l, err := net.ListenTCP("tcp", addr) if err != nil { - t.Fatalf("Could not bind to port in test", s) + t.Fatalf("Could not bind to port %s in test", s) } defer l.Close() p, err := FindPortInRange(c.s)