forked from TrueCloudLab/rclone
serve sftp: fix race in the tests #4171
This commit is contained in:
parent
160c97da13
commit
117ff1d781
1 changed files with 1 additions and 2 deletions
|
@ -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
|
// run runs the server then runs the unit tests for the remote against
|
||||||
// it.
|
// it.
|
||||||
func run(t *testing.T, name string, start StartFn, useProxy bool) {
|
func run(t *testing.T, name string, start StartFn, useProxy bool) {
|
||||||
fstest.Initialise()
|
|
||||||
|
|
||||||
fremote, _, clean, err := fstest.RandomRemote()
|
fremote, _, clean, err := fstest.RandomRemote()
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
defer clean()
|
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
|
// Run runs the server then runs the unit tests for the remote against
|
||||||
// it.
|
// it.
|
||||||
func Run(t *testing.T, name string, start StartFn) {
|
func Run(t *testing.T, name string, start StartFn) {
|
||||||
|
fstest.Initialise()
|
||||||
t.Run("Normal", func(t *testing.T) {
|
t.Run("Normal", func(t *testing.T) {
|
||||||
run(t, name, start, false)
|
run(t, name, start, false)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue