diff options
Diffstat (limited to 'test/external_test.go')
-rw-r--r-- | test/external_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/external_test.go b/test/external_test.go index 86799e320..f5737e17b 100644 --- a/test/external_test.go +++ b/test/external_test.go @@ -36,7 +36,7 @@ func testExternalPluginCompile(t *testing.T) { } if !strings.Contains(string(out), "dns.example") { - t.Fatal("dns.example plugin should be there") + t.Fatal("Plugin dns.example should be there") } } @@ -44,7 +44,7 @@ func run(t *testing.T, c *exec.Cmd) ([]byte, error) { c.Dir = ".." out, err := c.Output() if err != nil { - return nil, fmt.Errorf("run: failed to run %s %s: %q", c.Args[0], c.Args[1], err) + return nil, fmt.Errorf("Run: failed to run %s %s: %q", c.Args[0], c.Args[1], err) } return out, nil |