aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/controller/processor_test.go
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-03-11 21:38:10 +0100
committerAleksandr Nogikh <nogikh@google.com>2025-03-11 21:04:55 +0000
commitee70e6dbc377b7957fe85c173da580f033ee93a3 (patch)
treeb5b30a5a6af477b1de5c4775f51e9efcef71d4ed /syz-cluster/controller/processor_test.go
parentf9a86f79173ee73cd60ab4b2ff04d49764e53644 (diff)
syz-cluster: display and filter by Cc list
For each series, display the Cc'd email list and let users filter the patch series list by those addresses.
Diffstat (limited to 'syz-cluster/controller/processor_test.go')
-rw-r--r--syz-cluster/controller/processor_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-cluster/controller/processor_test.go b/syz-cluster/controller/processor_test.go
index ff85ebec9..00f2c471b 100644
--- a/syz-cluster/controller/processor_test.go
+++ b/syz-cluster/controller/processor_test.go
@@ -85,7 +85,7 @@ func awaitFinishedSessions(t *testing.T, seriesRepo *db.SeriesRepository, wantFi
for i := 0; i < int(deadline/interval); i++ {
time.Sleep(interval)
- list, err := seriesRepo.ListLatest(context.Background(), time.Time{}, 0)
+ list, err := seriesRepo.ListLatest(context.Background(), db.SeriesFilter{}, time.Time{}, 0)
assert.NoError(t, err)
withFinishedSeries := 0
for _, item := range list {