Commit 7e3cd3eb authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Run gofmt again.

parent 2c39d5b4
...@@ -431,7 +431,7 @@ func TestWriteAccess(t *testing.T) { ...@@ -431,7 +431,7 @@ func TestWriteAccess(t *testing.T) {
err := ioutil.WriteFile(fn, []byte("foo"), 0444) err := ioutil.WriteFile(fn, []byte("foo"), 0444)
CheckSuccess(err) CheckSuccess(err)
errno := syscall.Access(wd + "/mount/file", fuse.W_OK) errno := syscall.Access(wd+"/mount/file", fuse.W_OK)
if errno != 0 { if errno != 0 {
err = os.Errno(errno) err = os.Errno(errno)
CheckSuccess(err) CheckSuccess(err)
......
package zipfs package zipfs
import ( import (
...@@ -78,4 +77,3 @@ func TestLinkCount(t *testing.T) { ...@@ -78,4 +77,3 @@ func TestLinkCount(t *testing.T) {
t.Fatal("wrong link count", fi.Nlink) t.Fatal("wrong link count", fi.Nlink)
} }
} }
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