X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0f644e242ef37c911ad3dc25aca8135c339de349..4d7567b7b3577b561dd064d397c10a9331c3ee16:/services/keep-balance/collection_test.go diff --git a/services/keep-balance/collection_test.go b/services/keep-balance/collection_test.go index a548b1ff9f..6aaf07abae 100644 --- a/services/keep-balance/collection_test.go +++ b/services/keep-balance/collection_test.go @@ -30,7 +30,6 @@ func (s *integrationSuite) TestIdenticalTimestamps(c *check.C) { var lastMod time.Time sawUUID := make(map[string]bool) err := EachCollection(&s.config.Client, pageSize, func(c arvados.Collection) error { - got[trial] = append(got[trial], c.UUID) if c.ModifiedAt == nil { return nil } @@ -38,6 +37,7 @@ func (s *integrationSuite) TestIdenticalTimestamps(c *check.C) { // dup return nil } + got[trial] = append(got[trial], c.UUID) sawUUID[c.UUID] = true if lastMod == *c.ModifiedAt { streak++