From 828ff5e74a6452d84ae359f2f892877926405e6b Mon Sep 17 00:00:00 2001 From: connorwstein Date: Wed, 11 Oct 2023 17:23:39 -0400 Subject: [PATCH] Fix lint --- .../ccip/internal/ccipdata/price_registry_reader_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/services/ocr2/plugins/ccip/internal/ccipdata/price_registry_reader_test.go b/core/services/ocr2/plugins/ccip/internal/ccipdata/price_registry_reader_test.go index c2a3b33dd3..27eba4e7b9 100644 --- a/core/services/ocr2/plugins/ccip/internal/ccipdata/price_registry_reader_test.go +++ b/core/services/ocr2/plugins/ccip/internal/ccipdata/price_registry_reader_test.go @@ -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)) }