Skip to content

Commit

Permalink
fix: intermittent test failures with OpsWorks (#3839)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jul 20, 2021
1 parent 2e61ed8 commit ebac2a5
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
@@ -1,7 +1,7 @@
module.exports = function() {
this.Before("@opsworks", function (callback) {
this.iam = new this.AWS.IAM();
this.service = new this.AWS.OpsWorks();
this.iam = new this.AWS.IAM({region: 'us-west-2'});
this.service = new this.AWS.OpsWorks({region: 'us-west-2'});
callback();
});

Expand Down

0 comments on commit ebac2a5

Please sign in to comment.