diff options
Diffstat (limited to 'test/proxy_test.go')
-rw-r--r-- | test/proxy_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/proxy_test.go b/test/proxy_test.go index 9e2dd9aab..634fde888 100644 --- a/test/proxy_test.go +++ b/test/proxy_test.go @@ -34,12 +34,12 @@ func TestLookupProxy(t *testing.T) { i, err := CoreDNSServer(corefile) if err != nil { - t.Fatalf("could not get CoreDNS serving instance: %s", err) + t.Fatalf("Could not get CoreDNS serving instance: %s", err) } udp, _ := CoreDNSServerPorts(i, 0) if udp == "" { - t.Fatalf("could not get udp listening port") + t.Fatalf("Could not get UDP listening port") } defer i.Stop() |