X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/14a6eb786a0d01e86ccae7645e880661caf6f0cb..337b055122485e669cc601c91a78f8fdd2625b3e:/services/keep-balance/collection_test.go diff --git a/services/keep-balance/collection_test.go b/services/keep-balance/collection_test.go index e6925c4afd..3ab9d07b2e 100644 --- a/services/keep-balance/collection_test.go +++ b/services/keep-balance/collection_test.go @@ -5,10 +5,11 @@ package main import ( + "context" "sync" "time" - "git.curoverse.com/arvados.git/sdk/go/arvados" + "git.arvados.org/arvados.git/sdk/go/arvados" check "gopkg.in/check.v1" ) @@ -29,7 +30,7 @@ func (s *integrationSuite) TestIdenticalTimestamps(c *check.C) { longestStreak := 0 var lastMod time.Time sawUUID := make(map[string]bool) - err := EachCollection(s.client, pageSize, func(c arvados.Collection) error { + err := EachCollection(context.Background(), s.client, pageSize, func(c arvados.Collection) error { if c.ModifiedAt.IsZero() { return nil }