From 722ac325be10a199c90c32e8045030ca81d3e496 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 15 Jan 2026 16:01:13 +0100 Subject: dashboard: fix manuallyUpstreamed The function returned incorrect result when the reporting stage of interest was completely skipped and never reported. --- dashboard/app/app_test.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'dashboard/app/app_test.go') diff --git a/dashboard/app/app_test.go b/dashboard/app/app_test.go index 96861dfa5..cfabcc473 100644 --- a/dashboard/app/app_test.go +++ b/dashboard/app/app_test.go @@ -650,6 +650,12 @@ var testConfig = &GlobalConfig{ DailyLimit: 1000, Config: &TestConfig{Index: 1}, Embargo: 4 * 24 * time.Hour, + Filter: func(bug *Bug) FilterResult { + if bug.Title == "skip reporting1" { + return FilterSkip + } + return FilterReport + }, }, { Name: "reporting2", -- cgit mrf-deployment