From e3dcc9c5e67951dd6412d84ead8f452b4280ba53 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Mon, 4 Oct 2021 21:43:08 +0000 Subject: [PATCH] fix(client-opsworks): intermittent integ tests failures --- features/opsworks/step_definitions/opsworks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/opsworks/step_definitions/opsworks.js b/features/opsworks/step_definitions/opsworks.js index f600d5af7e770..482cdd359709f 100644 --- a/features/opsworks/step_definitions/opsworks.js +++ b/features/opsworks/step_definitions/opsworks.js @@ -3,8 +3,8 @@ const { OpsWorks } = require("../../../clients/client-opsworks"); const { Before, Given, Then } = require("cucumber"); Before({ tags: "@opsworks" }, function (scenario, callback) { - this.iam = new IAM({}); - this.service = new OpsWorks({}); + this.iam = new IAM({ region: "us-west-2" }); + this.service = new OpsWorks({ region: "us-west-2" }); callback(); });