summaryrefslogtreecommitdiffstats
path: root/helpers/path_test.go
diff options
context:
space:
mode:
authorbep <bjorn.erik.pedersen@gmail.com>2015-04-03 21:20:27 +0200
committerbep <bjorn.erik.pedersen@gmail.com>2015-04-03 21:20:25 +0200
commitbea42218b69b10f5fe42a974816d45481e2d73f5 (patch)
tree5373ab862a1349165c4e17be6778e1366c5ad9e6 /helpers/path_test.go
parentbea5feb34d5944e6dfc87dd292a85d100573397a (diff)
helpers: fix some go vet errors
Diffstat (limited to 'helpers/path_test.go')
-rw-r--r--helpers/path_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/path_test.go b/helpers/path_test.go
index f0c8ef6e2..a6da1a01a 100644
--- a/helpers/path_test.go
+++ b/helpers/path_test.go
@@ -550,7 +550,7 @@ func TestRemoveSubpaths(t *testing.T) {
got := RemoveSubpaths([]string{"hello", "hello/world", "foo/bar", ""})
expect := []string{"hello", "foo/bar"}
if !reflect.DeepEqual(got, expect) {
- t.Errorf("Test %d failed. Expected %q but got %q", expect, got)
+ t.Errorf("Expected %q but got %q", expect, got)
}
}