Skip to content

Commit f1c219e

Browse files
committed
MAGETWO-85687: Declarative Schema
- fix test that failed randomly
1 parent 081b5a2 commit f1c219e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_all_fields.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,15 @@
2020
'country_of_manufacture' => 'US',
2121
'msrp' => 10.48,
2222
'gift_message_available' => 0,
23-
//'minimal_price' => 3.82,
2423
'msrp_display_actual_price_type' => 0,
2524
'news_from_date' => '2017-08-10',
2625
'news_to_date' => '2017-08-11',
2726
'old_id' => 35235,
2827
'options_container' => 'Options Container',
2928
'required_options' => 1,
3029
'special_price' => 3.82,
31-
'special_from_date' => date('Y-m-d'),
32-
'special_to_date' => date('Y-m-d'),
30+
'special_from_date' => date('Y-m-d', strtotime('-1 day')),
31+
'special_to_date' => date('Y-m-d', strtotime('+1 day')),
3332
'manufacturer' => 'Magento Inc.',
3433
];
3534

0 commit comments

Comments
 (0)