Avoid deprecated warning when creating an order in unit tests
Unexpected deprecated notice for Action: woocommerce_order_add_product
This commit is contained in:
parent
baaaf493d3
commit
09cbf5f816
|
@ -57,7 +57,12 @@ class WC_Helper_Order {
|
|||
$order = wc_create_order( $order_data );
|
||||
|
||||
// Add order products
|
||||
$order->add_product( $product, 4 );
|
||||
$item_1 = new WC_Order_Item_Product();
|
||||
$item_1->set_props( array(
|
||||
'product' => $product,
|
||||
'quantity' => 4,
|
||||
) );
|
||||
$order->add_item( $item_1 );
|
||||
|
||||
// Set billing address
|
||||
$order->set_billing_first_name( 'Jeroen' );
|
||||
|
|
Loading…
Reference in New Issue