Skip to content

Commit

Permalink
Unify empty line style
Browse files Browse the repository at this point in the history
  • Loading branch information
tv42 committed Jun 29, 2016
1 parent 52f2ff9 commit cf651db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions options_daemon_timeout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ func TestMountOptionDaemonTimeout(t *testing.T) {
t.Skip("skipping time-based test in short mode")
}
t.Parallel()

mnt, err := fstestutil.MountedT(t,
fstestutil.SimpleFS{slowCreaterDir{}},
nil,
Expand Down
4 changes: 2 additions & 2 deletions options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ func TestMountOptionDefaultPermissions(t *testing.T) {
t.Skip("FreeBSD does not support DefaultPermissions")
}
t.Parallel()

mnt, err := fstestutil.MountedT(t,
fstestutil.SimpleFS{
&fstestutil.ChildMap{"child": unwritableFile{}},
},
nil,
fuse.DefaultPermissions(),
)

if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -203,12 +203,12 @@ func (createrDir) Create(ctx context.Context, req *fuse.CreateRequest, resp *fus

func TestMountOptionReadOnly(t *testing.T) {
t.Parallel()

mnt, err := fstestutil.MountedT(t,
fstestutil.SimpleFS{createrDir{}},
nil,
fuse.ReadOnly(),
)

if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit cf651db

Please sign in to comment.