Skip to content

Commit 6b86743

Browse files
committed
preceding comments
1 parent 09b6646 commit 6b86743

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/JoomlaBrowser.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,8 @@ public function installExtensionFromFolder($path, $type = 'Extension')
471471
{
472472
$this->amOnPage('/administrator/index.php?option=com_installer');
473473
$this->waitForText('Extensions: Install', '30', array('css' => 'H1'));
474-
$this->wait(1); // Let the tabsset come to life
474+
// Let the tabsset come to life
475+
$this->wait(1);
475476
$this->click(array('link' => 'Install from Folder'));
476477
$this->debug('I enter the Path');
477478
$this->fillField(array('id' => 'install_directory'), $path);
@@ -497,7 +498,8 @@ public function installExtensionFromUrl($url, $type = 'Extension')
497498
{
498499
$this->amOnPage('/administrator/index.php?option=com_installer');
499500
$this->waitForText('Extensions: Install', '30', array('css' => 'H1'));
500-
$this->wait(1); // Let the tabsset come to life
501+
// Let the tabsset come to life
502+
$this->wait(1);
501503
$this->click(array('link' => 'Install from URL'));
502504
$this->debug('I enter the url');
503505
$this->fillField(array('id' => 'install_url'), $url);

0 commit comments

Comments
 (0)