diff options
Diffstat (limited to 'plugin/file/file_test.go')
-rw-r--r-- | plugin/file/file_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/file/file_test.go b/plugin/file/file_test.go index 02668785b..0e4050e38 100644 --- a/plugin/file/file_test.go +++ b/plugin/file/file_test.go @@ -14,10 +14,10 @@ func BenchmarkFileParseInsert(b *testing.B) { func TestParseNoSOA(t *testing.T) { _, err := Parse(strings.NewReader(dbNoSOA), "example.org.", "stdin", 0) if err == nil { - t.Fatalf("zone %q should have failed to load", "example.org.") + t.Fatalf("Zone %q should have failed to load", "example.org.") } if !strings.Contains(err.Error(), "no SOA record") { - t.Fatalf("zone %q should have failed to load with no soa error: %s", "example.org.", err) + t.Fatalf("Zone %q should have failed to load with no soa error: %s", "example.org.", err) } } |