Skip to content

Commit 7b1e25f

Browse files
authored
Merge pull request #128 from 810/patch44
Set correct language on debug
2 parents f7a80e0 + f14d5f0 commit 7b1e25f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/JoomlaBrowser.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,15 +202,15 @@ public function installJoomla()
202202
$this->debug('I open Joomla Installation Configuration Page');
203203
$this->amOnPage('/installation/index.php');
204204
$this->debug('I check that FTP tab is not present in installation. Otherwise it means that I have not enough '
205-
. 'permissions to install joomla and execution will be stoped');
205+
. 'permissions to install joomla and execution will be stopped');
206206
$this->dontSeeElement(['id' => 'ftp']);
207207

208208
// I Wait for the text Main Configuration, meaning that the page is loaded
209209
$this->debug('I wait for Main Configuration');
210210
$this->waitForElement('#jform_language', 10);
211211
$this->debug('Wait for chosen to render the Languages list field');
212212
$this->wait(2);
213-
$this->debug('I select dk-DK as installation language');
213+
$this->debug('I select es-ES as installation language');
214214

215215
// Select a random language to force reloading of the lang strings after selecting English
216216
$this->selectOptionInChosenWithTextField('#jform_language', 'Spanish (Español)');
@@ -764,7 +764,7 @@ public function searchForItem($name = null)
764764
$this->debug("Searching for $name");
765765
$this->fillField(['id' => "filter_search"], $name);
766766
$this->click(['xpath' => "//button[@type='submit' and @data-original-title='Search']"]);
767-
767+
768768
return;
769769
}
770770

0 commit comments

Comments
 (0)