Merge pull request #11698 from pmorie/copy-test-visual

Make copy_test.go failures easier to debug
This commit is contained in:
Vish Kannan
2015-07-22 14:59:28 -07:00

View File

@@ -43,7 +43,7 @@ func TestDeepCopyApiObjects(t *testing.T) {
} }
if !reflect.DeepEqual(item, itemCopy) { if !reflect.DeepEqual(item, itemCopy) {
t.Errorf("expected %#v\ngot %#v", item, itemCopy) t.Errorf("\nexpected %#v\ngot %#v", item, itemCopy)
} }
} }
} }