Skip to content

Commit

Permalink
Added change to shield_page after merge master.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeDr committed Apr 27, 2016
1 parent 790fb1f commit 9977965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/support/pages/shield_page.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// in test/support/pages/shield_page.js
define(function (require) {
var config = require('intern').config;
var defaultTimeout = config.timeouts.default;
var defaultTimeout = config.timeouts.findTimeout;

// the page object is created as a constructor
// so we can provide the remote Command object
Expand All @@ -15,7 +15,7 @@ define(function (require) {

login: function login(user, pwd) {
var remote = this.remote;
return remote.setFindTimeout(5000)
return remote.setFindTimeout(defaultTimeout)
.findById('username')
.type(user)
.then(function () {
Expand Down

0 comments on commit 9977965

Please sign in to comment.