From 71a12a14c8d1282881cb3dfd5e2ed9e07274627e Mon Sep 17 00:00:00 2001 From: "api-clients-generation-pipeline[bot]" <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:04:54 +0000 Subject: [PATCH] Remove unused enable in test (#1751) Co-authored-by: ci.datadog-api-spec Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com> --- .apigentools-info | 8 ++++---- examples/v2/service-scorecards/CreateScorecardRule.py | 1 - tests/v2/features/service_scorecards.feature | 1 - 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.apigentools-info b/.apigentools-info index 009264cbba..799298bf41 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2023-11-06 14:30:03.814912", - "spec_repo_commit": "c1794418" + "regenerated": "2023-11-06 16:31:16.204614", + "spec_repo_commit": "62fc6756" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2023-11-06 14:30:03.837958", - "spec_repo_commit": "c1794418" + "regenerated": "2023-11-06 16:31:16.221809", + "spec_repo_commit": "62fc6756" } } } \ No newline at end of file diff --git a/examples/v2/service-scorecards/CreateScorecardRule.py b/examples/v2/service-scorecards/CreateScorecardRule.py index 48bbb9b330..53b3e17e77 100644 --- a/examples/v2/service-scorecards/CreateScorecardRule.py +++ b/examples/v2/service-scorecards/CreateScorecardRule.py @@ -22,7 +22,6 @@ configuration = Configuration() configuration.unstable_operations["create_scorecard_rule"] = True -configuration.unstable_operations["create_scorecard_outcomes_batch"] = True with ApiClient(configuration) as api_client: api_instance = ServiceScorecardsApi(api_client) response = api_instance.create_scorecard_rule(body=body) diff --git a/tests/v2/features/service_scorecards.feature b/tests/v2/features/service_scorecards.feature index e3b1af4d27..8d17ab5853 100644 --- a/tests/v2/features/service_scorecards.feature +++ b/tests/v2/features/service_scorecards.feature @@ -20,7 +20,6 @@ Feature: Service Scorecards @team:DataDog/service-catalog Scenario: Create a new rule returns "Created" response Given operation "CreateScorecardRule" enabled - And operation "CreateScorecardOutcomesBatch" enabled And new "CreateScorecardRule" request And body with value {"data": {"attributes": {"enabled": true, "name": "{{unique}}", "scorecard_name": "Observability Best Practices"}, "type": "rule"}} When the request is sent