mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
5c7a9a739a
The RetryBackend tests depend on the mock backend. When the Backend interface is eventually split from the restic package, this will lead to a dependency cycle between backend and backend/mock. Thus split the RetryBackend into a separate package to avoid this problem.
9 lines
160 B
Go
9 lines
160 B
Go
package retry
|
|
|
|
import "testing"
|
|
|
|
// TestFastRetries reduces the initial retry delay to 1 millisecond
|
|
func TestFastRetries(t testing.TB) {
|
|
fastRetries = true
|
|
}
|