aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/presubmit_test.go2
-rw-r--r--test/tsig_test.go8
2 files changed, 5 insertions, 5 deletions
diff --git a/test/presubmit_test.go b/test/presubmit_test.go
index a0b712e85..0d7dc4fcd 100644
--- a/test/presubmit_test.go
+++ b/test/presubmit_test.go
@@ -260,7 +260,7 @@ func (w *testImportOrderingWalker) walk(path string, info os.FileInfo, _ error)
}
// Ok, now that we have the type, let's see if all members adhere to it.
- // After that we check if the are in the right order.
+ // After that we check if they are in the right order.
for i := 0; i <= bl; i++ {
for _, p := range blocks[i] {
t := importtype(p.Path.Value)
diff --git a/test/tsig_test.go b/test/tsig_test.go
index 19d5d0379..f126f792b 100644
--- a/test/tsig_test.go
+++ b/test/tsig_test.go
@@ -40,7 +40,7 @@ func TestTsig(t *testing.T) {
}
tsig := r.IsTsig()
if tsig == nil {
- t.Fatalf("Respose was not TSIG")
+ t.Fatalf("Response was not TSIG")
}
if tsig.Error != dns.RcodeSuccess {
t.Fatalf("TSIG Error code should be dns.RcodeSuccess")
@@ -70,7 +70,7 @@ func TestTsigBadKey(t *testing.T) {
}
tsig := r.IsTsig()
if tsig == nil {
- t.Fatalf("Respose was not TSIG")
+ t.Fatalf("Response was not TSIG")
}
if tsig.Error != dns.RcodeBadKey {
t.Fatalf("TSIG Error code should be dns.RcodeBadKey")
@@ -109,7 +109,7 @@ func TestTsigBadSig(t *testing.T) {
}
tsig := r.IsTsig()
if tsig == nil {
- t.Fatalf("Respose was not TSIG")
+ t.Fatalf("Response was not TSIG")
}
if tsig.Error != dns.RcodeBadSig {
t.Fatalf("TSIG Error code should be dns.RcodeBadSig")
@@ -149,7 +149,7 @@ func TestTsigBadTime(t *testing.T) {
}
tsig := r.IsTsig()
if tsig == nil {
- t.Fatalf("Respose was not TSIG")
+ t.Fatalf("Response was not TSIG")
}
if tsig.Error != dns.RcodeBadTime {
t.Fatalf("TSIG Error code should be dns.RcodeBadTime")