From 75ce61b79092b468449fdbfc2a82cab0ba1bbdb6 Mon Sep 17 00:00:00 2001 From: "api-clients-generation-pipeline[bot]" <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com> Date: Tue, 23 Dec 2025 15:48:22 +0000 Subject: [PATCH] Fix flaky synthetic test (#2860) Co-authored-by: ci.datadog-api-spec --- features/v2/teams.feature | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/features/v2/teams.feature b/features/v2/teams.feature index 9deac2e88afd..41b57b147469 100644 --- a/features/v2/teams.feature +++ b/features/v2/teams.feature @@ -112,8 +112,11 @@ Feature: Teams And the response "data.attributes.name" is equal to "test-name-{{ unique_hash }}" And the response "data.attributes.avatar" is equal to "🥑" And the response "data.attributes.banner" is equal to 7 - And the response "data.attributes.visible_modules" is equal to ["m1","m2"] - And the response "data.attributes.hidden_modules" is equal to ["m3"] + And the response "data.attributes.visible_modules" has length 2 + And the response "data.attributes.visible_modules" array contains value "m1" + And the response "data.attributes.visible_modules" array contains value "m2" + And the response "data.attributes.hidden_modules" has length 1 + And the response "data.attributes.hidden_modules" array contains value "m3" @skip @team:DataDog/aaa-omg Scenario: Create team connections returns "Bad Request" response