From 295286cdc844a993d4b6a048731dd519f5b67719 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Sun, 10 May 2015 13:18:26 +0900 Subject: [PATCH] Fix printf verb --- pkg/securitycontext/provider_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/securitycontext/provider_test.go b/pkg/securitycontext/provider_test.go index 609490c7b52..1735fdfa99f 100644 --- a/pkg/securitycontext/provider_test.go +++ b/pkg/securitycontext/provider_test.go @@ -144,7 +144,7 @@ func TestModifySecurityOption(t *testing.T) { for _, tc := range testCases { actual := modifySecurityOption(tc.config, tc.optName, tc.optVal) if !reflect.DeepEqual(tc.expected, actual) { - t.Errorf("Failed to apply options correctly for tc: %S. Expected: %v but got %v", tc.name, tc.expected, actual) + t.Errorf("Failed to apply options correctly for tc: %s. Expected: %v but got %v", tc.name, tc.expected, actual) } } }