From 0ef0ca8e539fab5a7b232277cf69d655d7560e1b Mon Sep 17 00:00:00 2001 From: Alan Huang Date: Fri, 14 Aug 2026 23:28:38 +0800 Subject: [PATCH] fix(e2e): use standardized labels in TestServiceSelectorDrift Replace non-standard labels (type=reconciliation, scenario=drift-service-selector) with the framework-provided category/speed/scenario labels so the test can be selected by the smoke/extended profiles. --- test/e2e/reconciliation_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/e2e/reconciliation_test.go b/test/e2e/reconciliation_test.go index 30792d4e..fe932e6e 100644 --- a/test/e2e/reconciliation_test.go +++ b/test/e2e/reconciliation_test.go @@ -378,8 +378,9 @@ func TestServicePortDrift(t *testing.T) { func TestServiceSelectorDrift(t *testing.T) { t.Parallel() feature := features.New("MCPServer Service selector drift correction"). - WithLabel("type", "reconciliation"). - WithLabel("scenario", "drift-service-selector"). + WithLabel(category.Label, category.Lifecycle). + WithLabel(speed.Label, speed.Moderate). + WithLabel(scenario.Label, scenario.Drift). Setup(func(ctx context.Context, t *testing.T, cfg *envconf.Config) context.Context { return f.SetupMCPServer(ctx, t, cfg, "drift-selector", true) }).