Copy reflect diff

This commit is contained in:
Clayton Coleman 2016-06-12 15:47:36 -04:00
parent e32b871637
commit 82a9bed565
No known key found for this signature in database
GPG Key ID: 3D16906B4F1C5CB3

View File

@ -54,7 +54,7 @@ func doDeepCopyTest(t *testing.T, kind unversioned.GroupVersionKind, f *fuzz.Fuz
}
if !reflect.DeepEqual(item, itemCopy) {
t.Errorf("\nexpected: %#v\n\ngot: %#v\n\ndiff: %v", item, itemCopy, diff.ObjectGoPrintSideBySide(item, itemCopy))
t.Errorf("\nexpected: %#v\n\ngot: %#v\n\ndiff: %v", item, itemCopy, diff.ObjectReflectDiff(item, itemCopy))
}
}