1
0
mirror of https://github.com/golang/go synced 2024-11-23 18:00:06 -07:00

path/filepath: include test number in TestIssue13582 output

Otherwise it's hard to tell the difference between
link1 and link2 or other tests.

Change-Id: I36c153cccb10959535595938dfbc49db930b9fac
Reviewed-on: https://go-review.googlesource.com/17851
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Alex Brainman <alex.brainman@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Alex Brainman 2015-12-15 16:56:18 +11:00
parent d4df6f4874
commit 3540376b70

View File

@ -953,13 +953,13 @@ func TestIssue13582(t *testing.T) {
{link1, realFile},
{link2, realFile},
}
for _, test := range tests {
for i, test := range tests {
have, err := filepath.EvalSymlinks(test.path)
if err != nil {
t.Fatal(err)
}
if have != test.want {
t.Errorf("EvalSymlinks(%q) returns %q, want %q", test.path, have, test.want)
t.Errorf("test#%d: EvalSymlinks(%q) returns %q, want %q", i, test.path, have, test.want)
}
}
}