Skip to content

Commit 89cca73

Browse files
committed
MAGETWO-51926: All Integration Tests for Elasticsearch are Skipped
- Correct date format in integration test
1 parent 04795a6 commit 89cca73

File tree

1 file changed

+1
-1
lines changed
  • dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql

1 file changed

+1
-1
lines changed

dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/AdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public function testAdvancedSearchDateField($rangeFilter, $expectedRecordsCount)
407407
{
408408
array_walk($rangeFilter, function (&$item) {
409409
if (!empty($item)) {
410-
$item = gmdate('c', strtotime($item)) . 'Z';
410+
$item = gmdate('c', strtotime($item));
411411
}
412412
});
413413
$this->requestBuilder->bind('date.from', $rangeFilter['from']);

0 commit comments

Comments
 (0)