Add argument to Skipf()

This commit is contained in:
Alexander Neumann 2018-01-17 23:14:37 +01:00
parent 05958caf6e
commit c31a5e7e5c
1 changed files with 1 additions and 1 deletions

View File

@ -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
}