serve sftp: fix race in the tests #4171

This commit is contained in:
Nick Craig-Wood 2020-06-15 21:15:15 +01:00
parent 160c97da13
commit 117ff1d781
1 changed files with 1 additions and 2 deletions

View File

@ -29,8 +29,6 @@ type StartFn func(f fs.Fs) (configmap.Simple, func())
// run runs the server then runs the unit tests for the remote against
// it.
func run(t *testing.T, name string, start StartFn, useProxy bool) {
fstest.Initialise()
fremote, _, clean, err := fstest.RandomRemote()
assert.NoError(t, err)
defer clean()
@ -98,6 +96,7 @@ func run(t *testing.T, name string, start StartFn, useProxy bool) {
// Run runs the server then runs the unit tests for the remote against
// it.
func Run(t *testing.T, name string, start StartFn) {
fstest.Initialise()
t.Run("Normal", func(t *testing.T) {
run(t, name, start, false)
})