Commit 73e231d6 authored by Jakob Unterwurzacher's avatar Jakob Unterwurzacher

tests: fix typo in TestFopenKeepCache

./cache_test.go:98: Skip call has possible formatting directive %d
FAIL	github.com/hanwen/go-fuse/fuse/test [build failed]
parent da8b3e44
......@@ -95,7 +95,7 @@ func TestFopenKeepCache(t *testing.T) {
}
if minor := pathfs.Connector().Server().KernelSettings().Minor; minor < 12 {
t.Skip("protocol v%d has no notify support.", minor)
t.Skipf("protocol v%d has no notify support.", minor)
}
code := pathfs.EntryNotify("", "file.txt")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment