Avoid deprecated warning when creating an order in unit tests

Unexpected deprecated notice for Action: woocommerce_order_add_product
This commit is contained in:
James Collins 2017-04-06 17:11:59 +08:00
parent baaaf493d3
commit 09cbf5f816
1 changed files with 6 additions and 1 deletions

View File

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