Merge pull request #89 from miku/printf-wrong-verb

correct printf verb
This commit is contained in:
Fatih Arslan 2017-06-12 15:55:44 +03:00 committed by GitHub
commit 7e5a8eef61

View File

@ -399,7 +399,7 @@ func TestMap_NestedMapWithSliceIntValues(t *testing.T) {
foo := in["Foo"].(map[string][]int) foo := in["Foo"].(map[string][]int)
if name := foo["example_key"]; name[0] != 80 { if name := foo["example_key"]; name[0] != 80 {
t.Errorf("Map nested struct's name field should give example, got: %s", name) t.Errorf("Map nested struct's name field should give example, got: %v", name)
} }
} }