diff --git a/graph/db/benchmark_test.go b/graph/db/benchmark_test.go index 08dba16de..1022197c5 100644 --- a/graph/db/benchmark_test.go +++ b/graph/db/benchmark_test.go @@ -736,6 +736,15 @@ func BenchmarkGraphReadMethods(b *testing.B) { require.NoError(b, err) }, }, + { + name: "ChanUpdatesInHorizon", + fn: func(b testing.TB, store V1Store) { + _, err := store.ChanUpdatesInHorizon( + time.Unix(0, 0), time.Now(), + ) + require.NoError(b, err) + }, + }, } for _, test := range tests {