Skip to content

Commit 10d64df

Browse files
authored
fix(client-opsworks): intermittent integ tests failures (#2865)
1 parent 952f14d commit 10d64df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/opsworks/step_definitions/opsworks.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const { OpsWorks } = require("../../../clients/client-opsworks");
33
const { Before, Given, Then } = require("cucumber");
44

55
Before({ tags: "@opsworks" }, function (scenario, callback) {
6-
this.iam = new IAM({});
7-
this.service = new OpsWorks({});
6+
this.iam = new IAM({ region: "us-west-2" });
7+
this.service = new OpsWorks({ region: "us-west-2" });
88
callback();
99
});
1010

0 commit comments

Comments
 (0)