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');