From bb4b2e9fea27753ed07aaf3354cc05d16058f09e Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Wed, 11 Oct 2017 14:49:35 -0700 Subject: [PATCH] test: Modify Fatal to Fatalf as we have a specifier Signed-off-by: Mrunal Patel --- server/inspect_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/inspect_test.go b/server/inspect_test.go index e0479494..7be46c4e 100644 --- a/server/inspect_test.go +++ b/server/inspect_test.go @@ -114,7 +114,7 @@ func TestGetContainerInfo(t *testing.T) { t.Fatalf("expected sandbox to be testsandboxid, got %s", ci.Sandbox) } if ci.IP != "1.1.1.42" { - t.Fatal("expected ip 1.1.1.42, got %s", ci.IP) + t.Fatalf("expected ip 1.1.1.42, got %s", ci.IP) } if len(ci.Annotations) == 0 { t.Fatal("annotations are empty")