diff --git a/src/path/path_test.go b/src/path/path_test.go index 85b2450a62..2a3635300e 100644 --- a/src/path/path_test.go +++ b/src/path/path_test.go @@ -138,7 +138,7 @@ var jointests = []JoinTest{ func TestJoin(t *testing.T) { for _, test := range jointests { if p := Join(test.elem...); p != test.path { - t.Errorf("join(%q) = %q, want %q", test.elem, p, test.path) + t.Errorf("Join(%q) = %q, want %q", test.elem, p, test.path) } } }