Skip to content

Commit

Permalink
Fix cases.
Browse files Browse the repository at this point in the history
Fixes #5600
  • Loading branch information
LeeDr committed Dec 8, 2015
1 parent b379285 commit cb86443
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/support/pages/settings_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ define(function (require) {
var defaultTimeout = config.timeouts.default;
var common;

function settings_page(remote) {
function settingsPage(remote) {
this.remote = remote;
common = new Common(this.remote);
}

settings_page.prototype = {
constructor: settings_page,
settingsPage.prototype = {
constructor: settingsPage,

clickAdvancedTab: function () {
common.debug('in clickAdvancedTab');
Expand Down Expand Up @@ -322,5 +322,5 @@ define(function (require) {
}
};

return settings_page;
return settingsPage;
});

0 comments on commit cb86443

Please sign in to comment.