From 3e7281e620bb16be6909ded1ca74ae8821e38edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 28 Sep 2017 11:10:36 +0200 Subject: [PATCH] Include additional space in input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems that last char is sometimes lost and space is harmless Signed-off-by: Michal Čihař --- test/selenium/PmaSeleniumDbEventsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/selenium/PmaSeleniumDbEventsTest.php b/test/selenium/PmaSeleniumDbEventsTest.php index 975433f5c5..4fb7e58574 100644 --- a/test/selenium/PmaSeleniumDbEventsTest.php +++ b/test/selenium/PmaSeleniumDbEventsTest.php @@ -113,9 +113,9 @@ class PMA_SeleniumDbEventsTest extends PMA_SeleniumBase $this->select($this->byName("item_interval_field")) ->selectOptionByLabel("MINUTE_SECOND"); - $this->byName("item_starts")->value(date('Y-m-d', strtotime('-1 day'))); + $this->byName("item_starts")->value(date('Y-m-d', strtotime('-1 day')) . ' '); - $this->byName("item_ends")->value(date('Y-m-d', strtotime('+1 day'))); + $this->byName("item_ends")->value(date('Y-m-d', strtotime('+1 day')) . ' '); $ele = $this->waitForElement('byName', "item_interval_value"); $ele->value('1');