Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
connorwstein committed Oct 11, 2023
1 parent d806fda commit 828ff5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ func testPriceRegistryReader(t *testing.T, th priceRegReaderTH, pr ccipdata.Pric
require.NoError(t, err)
assert.Len(t, gasUpdates, len(expectedGas))

tokenUpdates, err := pr.GetTokenPriceUpdatesCreatedAfter(context.Background(), time.Unix(int64(ts-1), 0), 0)
require.NoError(t, err)
tokenUpdates, err2 := pr.GetTokenPriceUpdatesCreatedAfter(context.Background(), time.Unix(int64(ts-1), 0), 0)
require.NoError(t, err2)
assert.Len(t, tokenUpdates, len(expectedToken))
}

Expand Down

0 comments on commit 828ff5e

Please sign in to comment.