mirror of
https://github.com/octoleo/restic.git
synced 2024-12-28 04:56:04 +00:00
Fix tests
This commit is contained in:
parent
3ac1d0e4d1
commit
d1ca986f55
@ -51,7 +51,11 @@ func checkStruct(chkr *checker.Checker) []error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func checkData(chkr *checker.Checker) []error {
|
func checkData(chkr *checker.Checker) []error {
|
||||||
return collectErrors(chkr.ReadData)
|
return collectErrors(
|
||||||
|
func(errCh chan<- error, done <-chan struct{}) {
|
||||||
|
chkr.ReadData(nil, errCh, done)
|
||||||
|
},
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestCheckRepo(t *testing.T) {
|
func TestCheckRepo(t *testing.T) {
|
||||||
|
Loading…
Reference in New Issue
Block a user