diff options
Diffstat (limited to 'plugin/pkg/edns/edns_test.go')
-rw-r--r-- | plugin/pkg/edns/edns_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/pkg/edns/edns_test.go b/plugin/pkg/edns/edns_test.go index 89ac6d2ec..a775b50f1 100644 --- a/plugin/pkg/edns/edns_test.go +++ b/plugin/pkg/edns/edns_test.go @@ -12,7 +12,7 @@ func TestVersion(t *testing.T) { _, err := Version(m) if err == nil { - t.Errorf("expected wrong version, but got OK") + t.Errorf("Expected wrong version, but got OK") } } @@ -22,7 +22,7 @@ func TestVersionNoEdns(t *testing.T) { _, err := Version(m) if err != nil { - t.Errorf("expected no error, but got one: %s", err) + t.Errorf("Expected no error, but got one: %s", err) } } |