aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/file_test.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-05-07 22:47:25 +0100
committerGravatar Yong Tang <yong.tang.github@outlook.com> 2018-05-07 23:47:25 +0200
commit643550eabe37176fd27c8aa9263c8c4206be066d (patch)
tree6dd27292218b96176e3fd314d7251f98e41802f3 /plugin/file/file_test.go
parent15d989e294dbfd29bb3e8083190f1bc68bcd170c (diff)
downloadcoredns-643550eabe37176fd27c8aa9263c8c4206be066d.tar.gz
coredns-643550eabe37176fd27c8aa9263c8c4206be066d.tar.zst
coredns-643550eabe37176fd27c8aa9263c8c4206be066d.zip
presubmit: check for uppercase (#1774)
Another thing we can test automatically, we sorta settled on using an uppercase letter in in t.Log and t.Fatal calls. Let's just check for this.
Diffstat (limited to 'plugin/file/file_test.go')
-rw-r--r--plugin/file/file_test.go4
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)
}
}