Remove TitleCases from NonZeroDefaultSet

This commit is contained in:
Aaron L 2016-09-03 11:54:23 -07:00
parent 67f72d4596
commit e1bfd9d0da
3 changed files with 3 additions and 13 deletions

View file

@ -59,7 +59,7 @@ func TestNonZeroDefaultSet(t *testing.T) {
}
for i, test := range tests {
z := NonZeroDefaultSet(test.Defaults, nil, test.Obj)
z := NonZeroDefaultSet(test.Defaults, test.Obj)
if !reflect.DeepEqual(test.Ret, z) {
t.Errorf("[%d] mismatch:\nWant: %#v\nGot: %#v", i, test.Ret, z)
}