From d40c0374d24be6e47952a70e55df9482d806a911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=8E=E6=89=87=E6=BB=91=E7=BF=94=E7=BF=BC?= Date: Thu, 20 Mar 2025 16:09:11 +0000 Subject: [PATCH] Fix test --- app/dns/dnscommon_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/dns/dnscommon_test.go b/app/dns/dnscommon_test.go index a7eb60e3..4c6f9d73 100644 --- a/app/dns/dnscommon_test.go +++ b/app/dns/dnscommon_test.go @@ -85,8 +85,9 @@ func Test_parseResponse(t *testing.T) { } if got != nil { - // reset the time + // reset the time and RawHeader got.Expire = time.Time{} + got.RawHeader = nil } if cmp.Diff(got, tt.want) != "" { t.Error(cmp.Diff(got, tt.want))