diff options
author | 2019-08-21 16:08:55 -0400 | |
---|---|---|
committer | 2019-08-21 16:08:55 -0400 | |
commit | 3f47fc8ba4f43a074c078c71fccb8a0463d31672 (patch) | |
tree | aca616b315d0114a4351c4bdda2bdcf05a638b06 /test | |
parent | 6881d6d5854a718cd5c754f496a53f9931d6e34e (diff) | |
download | coredns-3f47fc8ba4f43a074c078c71fccb8a0463d31672.tar.gz coredns-3f47fc8ba4f43a074c078c71fccb8a0463d31672.tar.zst coredns-3f47fc8ba4f43a074c078c71fccb8a0463d31672.zip |
typo fixes (#3169)
* spelling fixes
* its/it's
Diffstat (limited to 'test')
-rw-r--r-- | test/ds_file_test.go | 2 | ||||
-rw-r--r-- | test/secondary_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/ds_file_test.go b/test/ds_file_test.go index 7d4ae0cdc..84b383368 100644 --- a/test/ds_file_test.go +++ b/test/ds_file_test.go @@ -8,7 +8,7 @@ import ( "github.com/miekg/dns" ) -// Using miek.nl here because this is the easiest zone to get access to and it's masters +// Using miek.nl here because this is the easiest zone to get access to and its masters // run both NSD and BIND9, making checks like "what should we actually return" super easy. var dsTestCases = []mtest.Case{ { diff --git a/test/secondary_test.go b/test/secondary_test.go index c0df1632b..fd9d4d562 100644 --- a/test/secondary_test.go +++ b/test/secondary_test.go @@ -71,7 +71,7 @@ func TestSecondaryZoneTransfer(t *testing.T) { m.SetQuestion("example.org.", dns.TypeSOA) var r *dns.Msg - // This is now async; we we need to wait for it to be transferred. + // This is now async; we need to wait for it to be transferred. for i := 0; i < 10; i++ { r, err = dns.Exchange(m, udp) if len(r.Answer) != 0 { |