Fix printf verb

pull/6/head
Shawn Smith 2015-05-10 13:18:26 +09:00
parent 738f403eea
commit 295286cdc8
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}
}
}