Skip to content

Commit

Permalink
phpcs style changes for master
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Sep 28, 2018
1 parent ba23fec commit 528ad27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/BasicStructure.php
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ public function setupLocalStorageBefore() {
'local',
'null::null',
'-c',
'datadir=' . $this->getServerRoot(). '/' . LOCAL_STORAGE_DIR_ON_REMOTE_SERVER
'datadir=' . $this->getServerRoot() . '/' . LOCAL_STORAGE_DIR_ON_REMOTE_SERVER
]
);
// stdOut should have a string like "Storage created with id 65"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ private function findDetailsTab($tabName) {
*/
public function changeDetailsTab($tabName) {
$tabId = $this->getDetailsTabId($tabName);
$tabSwitchXpath = "//li[@data-tabid='".$tabId."']";
$tabSwitchXpath = "//li[@data-tabid='" . $tabId . "']";
$tabSwitch = $this->find("xpath", $tabSwitchXpath);
if ($tabSwitch === null) {
throw new ElementNotFoundException(
__METHOD__ .
" could not find tab switch with id $tabName"
);
);
}
$this->waitTillElementIsNotNull($tabSwitchXpath);
$tabSwitch->focus();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function openDetails() {
throw new ElementNotFoundException(
__METHOD__ .
" could not find action button with label $this->deleteActionLabel"
);
);
}
$detailsBtn->focus();
$detailsBtn->click();
Expand Down

0 comments on commit 528ad27

Please sign in to comment.