Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
okazaki-kk committed Mar 24, 2024
1 parent 08e7865 commit 05cda46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ func TestResponsePacket(t *testing.T) {
expectedDnsRecords: []DnsRecord{
{
domain: "www.yahoo.com",
host: "me-ycpi-cf-www.g06.yahoodns.net",
ttl: 60,
host: "me-ycpi-cf-www.g06.yahoodns.net",
ttl: 60,
},
{
domain: "me-ycpi-cf-www.g06.yahoodns.net",
Expand Down
2 changes: 1 addition & 1 deletion record.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type DnsRecord struct {
domain string
ttl uint32
addr string
host string
host string
}

// NewDnsRecord creates a new DnsRecord
Expand Down

0 comments on commit 05cda46

Please sign in to comment.