Skip to content

Commit

Permalink
fix(client-opsworks): intermittent integ tests failures (#2865)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Oct 5, 2021
1 parent 952f14d commit 10d64df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/opsworks/step_definitions/opsworks.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

Expand Down

0 comments on commit 10d64df

Please sign in to comment.