From 7dec85c91a17ab6e520c60425a0c918380b1bc14 Mon Sep 17 00:00:00 2001 From: Jelle Kok Date: Fri, 24 Mar 2017 04:28:58 +0100 Subject: [PATCH] Set correct language on debug --- src/JoomlaBrowser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/JoomlaBrowser.php b/src/JoomlaBrowser.php index e5cf096..f50ccf0 100644 --- a/src/JoomlaBrowser.php +++ b/src/JoomlaBrowser.php @@ -142,7 +142,7 @@ public function installJoomla() $this->debug('I open Joomla Installation Configuration Page'); $I->amOnPage('/installation/index.php'); $this->debug('I check that FTP tab is not present in installation. Otherwise it means that I have not enough ' - . 'permissions to install joomla and execution will be stoped'); + . 'permissions to install joomla and execution will be stopped'); $I->dontSeeElement(['id' => 'ftp']); // I Wait for the text Main Configuration, meaning that the page is loaded @@ -150,7 +150,7 @@ public function installJoomla() $I->waitForElement('#jform_language', 10); $I->debug('Wait for chosen to render the Languages list field'); $I->wait(2); - $I->debug('I select dk-DK as installation language'); + $I->debug('I select es-ES as installation language'); // Select a random language to force reloading of the lang strings after selecting English $I->selectOptionInChosenWithTextField('#jform_language', 'Spanish (EspaƱol)');