From cb249e6cbbe238429da6902e3b87d33e3ba52f19 Mon Sep 17 00:00:00 2001 From: "Babak K. Shandiz" Date: Sun, 31 Aug 2025 02:02:25 +0100 Subject: [PATCH] test(search): explain why `is:` and `in:` qualifiers used in test case Signed-off-by: Babak K. Shandiz --- pkg/search/query_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/search/query_test.go b/pkg/search/query_test.go index 81b53d4cf..f99f73178 100644 --- a/pkg/search/query_test.go +++ b/pkg/search/query_test.go @@ -149,8 +149,8 @@ func TestAdvancedIssueSearchString(t *testing.T) { query: Query{ Keywords: []string{"keyword"}, Qualifiers: Qualifiers{ - In: []string{"foo", "bar"}, - Is: []string{"foo", "bar"}, + In: []string{"foo", "bar"}, // "in:" is a special qualifier but its values here are not special + Is: []string{"foo", "bar"}, // "is:" is a special qualifier but its values here are not special Label: []string{"foo", "bar"}, License: []string{"foo", "bar"}, No: []string{"foo", "bar"},