gs: replace usage of context.Background()

This commit is contained in:
Michael Eischer
2023-04-08 11:59:44 +02:00
parent 616926d2c1
commit c934c99d41
3 changed files with 3 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ func newGSTestSuite(t testing.TB) *test.Suite {
Create: func(config interface{}) (restic.Backend, error) {
cfg := config.(gs.Config)
be, err := gs.Create(cfg, tr)
be, err := gs.Create(context.Background(), cfg, tr)
if err != nil {
return nil, err
}