replace some usages of restic.Repository with more specific interface
This should eventually make it easier to test the code.
This commit is contained in:
parent
3424088274
commit
bfb56b78e1
19 changed files with 38 additions and 33 deletions
|
@ -229,7 +229,7 @@ func TestRepositoryLoadIndex(t *testing.T) {
|
|||
}
|
||||
|
||||
// loadIndex loads the index id from backend and returns it.
|
||||
func loadIndex(ctx context.Context, repo restic.Repository, id restic.ID) (*index.Index, error) {
|
||||
func loadIndex(ctx context.Context, repo restic.LoaderUnpacked, id restic.ID) (*index.Index, error) {
|
||||
buf, err := repo.LoadUnpacked(ctx, restic.IndexFile, id)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue