aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/exec
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2011-02-01 12:47:35 -0800
committerRob Pike <r@golang.org>2011-02-01 12:47:35 -0800
commiteea18d959e962571af177e24df125e0e8cae5c56 (patch)
treeb47d8fb3f906f05cc2f1deb308396f89147fc5cb /src/pkg/exec
parent6a13175f7decb03555476a3811abe67ac1ee8db0 (diff)
downloadgo-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.go2
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)
}
}
}