forked from TrueCloudLab/restic
lock: Tweak timeouts for lock refresh test
For some reason the test fails from time to time. Increase the timeouts to hopefully avoid this issue.
This commit is contained in:
parent
8dd95b710e
commit
aaac63da8d
1 changed files with 3 additions and 2 deletions
|
@ -133,10 +133,11 @@ func TestLockSuccessfulRefresh(t *testing.T) {
|
|||
repo, cleanup, _ := openTestRepo(t, nil)
|
||||
defer cleanup()
|
||||
|
||||
t.Log("test for successful lock refresh")
|
||||
// reduce locking intervals to be suitable for testing
|
||||
ri, rt := refreshInterval, refreshabilityTimeout
|
||||
refreshInterval = 20 * time.Millisecond
|
||||
refreshabilityTimeout = 100 * time.Millisecond
|
||||
refreshInterval = 40 * time.Millisecond
|
||||
refreshabilityTimeout = 200 * time.Millisecond
|
||||
defer func() {
|
||||
refreshInterval, refreshabilityTimeout = ri, rt
|
||||
}()
|
||||
|
|
Loading…
Reference in a new issue