aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/nsec3_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/file/nsec3_test.go')
-rw-r--r--plugin/file/nsec3_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/file/nsec3_test.go b/plugin/file/nsec3_test.go
index 6611056cb..ed9f74f25 100644
--- a/plugin/file/nsec3_test.go
+++ b/plugin/file/nsec3_test.go
@@ -8,14 +8,14 @@ import (
func TestParseNSEC3PARAM(t *testing.T) {
_, err := Parse(strings.NewReader(nsec3paramTest), "miek.nl", "stdin", 0)
if err == nil {
- t.Fatalf("expected error when reading zone, got nothing")
+ t.Fatalf("Expected error when reading zone, got nothing")
}
}
func TestParseNSEC3(t *testing.T) {
_, err := Parse(strings.NewReader(nsec3Test), "miek.nl", "stdin", 0)
if err == nil {
- t.Fatalf("expected error when reading zone, got nothing")
+ t.Fatalf("Expected error when reading zone, got nothing")
}
}