From fffaac24db88f69eb3a0513eb096cc10143bf666 Mon Sep 17 00:00:00 2001 From: Andrew Low Date: Tue, 12 Sep 2023 11:36:24 -0400 Subject: [PATCH] nit --- analyzer/item/item_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyzer/item/item_test.go b/analyzer/item/item_test.go index 75d761861..375d7c67f 100644 --- a/analyzer/item/item_test.go +++ b/analyzer/item/item_test.go @@ -134,7 +134,7 @@ func setupAnalyzer(t *testing.T, testDb *postgres.Client, p *mockProcessor, cfg // getDbProcessedItems queries the test db and returns a mapping of item_id:frequency // where item_id refers to the item whose database updates were committed, and // frequency is the count of how many times those updates were applied. -func getDbProcessedItems(t *testing.T, ctx context.Context, storage storage.TargetStorage) map[uint64]uint64 { +func getDbProcessedItems(t *testing.T, ctx context.Context, storage storage.TargetStorage) map[uint64]uint64 { //nolint:revive rows, err := storage.Query(ctx, testItemCounts) require.NoError(t, err, "failed to fetch processed items from db") defer rows.Close()