diff options
| author | Rob Pike <r@golang.org> | 2011-02-01 12:47:35 -0800 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2011-02-01 12:47:35 -0800 |
| commit | eea18d959e962571af177e24df125e0e8cae5c56 (patch) | |
| tree | b47d8fb3f906f05cc2f1deb308396f89147fc5cb /src/pkg/exec | |
| parent | 6a13175f7decb03555476a3811abe67ac1ee8db0 (diff) | |
| download | go-eea18d959e962571af177e24df125e0e8cae5c56.tar.xz | |
log: rename Exit* to Fatal*
This aligns the naming scheme with the testing package and
also lets govet work on more logging calls.
R=rsc
CC=golang-dev
https://golang.org/cl/4001048
Diffstat (limited to 'src/pkg/exec')
| -rw-r--r-- | src/pkg/exec/lp_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exec/lp_test.go b/src/pkg/exec/lp_test.go index 0ef6d252fa..54081771ec 100644 --- a/src/pkg/exec/lp_test.go +++ b/src/pkg/exec/lp_test.go @@ -27,7 +27,7 @@ func TestLookPathNotFound(t *testing.T) { t.Fatal("LookPath error is not a PathError") } if perr.Name != name { - t.Fatal("want PathError name %q, got %q", name, perr.Name) + t.Fatalf("want PathError name %q, got %q", name, perr.Name) } } } |
