fix for address builder test
This commit is contained in:
parent
cee0fce1aa
commit
1e3a7cebb4
1 changed files with 5 additions and 2 deletions
|
@ -26,8 +26,11 @@ class WC_Retailcrm_Order_Address_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
public function test_build()
|
||||
{
|
||||
$order_address = new WC_Retailcrm_Order_Address;
|
||||
$data = $order_address->build($this->order)->get_data();
|
||||
$order_address = new WC_Retailcrm_Order_Address();
|
||||
$data = $order_address
|
||||
->setWCAddressType(WC_Retailcrm_Abstracts_Address::ADDRESS_TYPE_BILLING)
|
||||
->build($this->order)
|
||||
->get_data();
|
||||
|
||||
$this->assertArrayHasKey('index', $data);
|
||||
$this->assertArrayHasKey('city', $data);
|
||||
|
|
Loading…
Add table
Reference in a new issue