Skip to content

Commit

Permalink
Test: Fix incorrect output format (#3968)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcpdumppy authored Nov 4, 2024
1 parent 9fbb6fb commit ccc4b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dns/dnscommon_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func Test_parseResponse(t *testing.T) {
got.Expire = time.Time{}
}
if cmp.Diff(got, tt.want) != "" {
t.Errorf(cmp.Diff(got, tt.want))
t.Error(cmp.Diff(got, tt.want))
// t.Errorf("handleResponse() = %#v, want %#v", got, tt.want)
}
})
Expand Down

0 comments on commit ccc4b7b

Please sign in to comment.