From c31a5e7e5cc0524d96f76bdb9c6928bb3f1ebdcd Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Wed, 17 Jan 2018 23:14:37 +0100 Subject: [PATCH] Add argument to Skipf() --- internal/restic/node_unix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/restic/node_unix_test.go b/internal/restic/node_unix_test.go index a9f0c5df1..4c44d5a34 100644 --- a/internal/restic/node_unix_test.go +++ b/internal/restic/node_unix_test.go @@ -101,7 +101,7 @@ func TestNodeFromFileInfo(t *testing.T) { t.Run("", func(t *testing.T) { fi, found := stat(t, test.filename) if !found && test.canSkip { - t.Skipf("%v not found in filesystem") + t.Skipf("%v not found in filesystem", test.filename) return }