Remove extra debug info in the dashboard testing

pull/10616/head
Chris Goller 2017-04-20 16:31:00 -05:00 committed by GitHub
parent 5c64a24760
commit ff176164c1
1 changed files with 0 additions and 4 deletions

View File

@ -302,10 +302,6 @@ func Test_newDashboardResponse(t *testing.T) {
for _, tt := range tests {
if got := newDashboardResponse(tt.d); !reflect.DeepEqual(got, tt.want) {
t.Errorf("%q. newDashboardResponse() = \n%+v\n\n, want\n\n%+v", tt.name, got, tt.want)
g, _ := json.MarshalIndent(got, "", " ")
w, _ := json.MarshalIndent(tt.want, "", " ")
log.Printf(string(g))
log.Printf(string(w))
}
}
}