Skip to content

Commit

Permalink
Cleanup: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Aug 6, 2024
1 parent 6ed3c5d commit bf8b67b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/rfq/api/rest/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ func (c *ServerSuite) TestFilterQuoteAge() {

// insert quote outside age range
quotes := []*db.Quote{
&db.Quote{OriginChainID: 1, UpdatedAt: now.Add(-time.Hour)},
&db.Quote{OriginChainID: 2, UpdatedAt: now.Add(-time.Minute)},
{OriginChainID: 1, UpdatedAt: now.Add(-time.Hour)},
{OriginChainID: 2, UpdatedAt: now.Add(-time.Minute)},
}

filteredQuotes := rest.FilterQuoteAge(c.cfg, quotes)
Expand Down

0 comments on commit bf8b67b

Please sign in to comment.