1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

correctly fail test

This commit is contained in:
Pavel 2020-04-09 09:59:14 +03:00
parent cf13ae7451
commit cee0fce1aa

View file

@ -68,6 +68,11 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
$orders = wc_get_orders(array('numberposts' => -1));
$order_added = end($orders);
if (!$order_added) {
$this->fail('$order_added is null');
}
$order_added_items = $order_added->get_items();
$order_added_item = reset($order_added_items);
$shipping_address = $order_added->get_address('shipping');