Fixed coding standards

This commit is contained in:
Claudio Sanches 2019-02-01 18:48:54 -02:00
parent 31e8dc9332
commit c1bb5802d1
1 changed files with 4 additions and 4 deletions

View File

@ -36,8 +36,8 @@ class WC_Tests_Reports_Orders_Stats extends WC_Unit_Test_Case {
$refund = wc_create_refund( $refund = wc_create_refund(
array( array(
'amount' => 12, 'amount' => 12,
'order_id' => $order->get_id(), 'order_id' => $order->get_id(),
) )
); );
@ -3180,7 +3180,7 @@ class WC_Tests_Reports_Orders_Stats extends WC_Unit_Test_Case {
update_option( 'woocommerce_tax_based_on', $default_tax_based_on ); update_option( 'woocommerce_tax_based_on', $default_tax_based_on );
} }
/** /**
* Test segmenting by product id and by variation id. * Test segmenting by product id and by variation id.
*/ */
public function test_segmenting_by_product_and_variation() { public function test_segmenting_by_product_and_variation() {
@ -3682,7 +3682,7 @@ class WC_Tests_Reports_Orders_Stats extends WC_Unit_Test_Case {
'pages' => 1, 'pages' => 1,
'page_no' => 1, 'page_no' => 1,
); );
$actual = json_decode( json_encode( $data_store->get_data( $query_args ) ), true ); $actual = json_decode( json_encode( $data_store->get_data( $query_args ) ), true );
$this->assertEquals( $expected_stats, $actual, 'Segmenting by product, expected: ' . print_r( $expected_stats, true ) . '; actual: ' . print_r( $actual, true ) ); $this->assertEquals( $expected_stats, $actual, 'Segmenting by product, expected: ' . print_r( $expected_stats, true ) . '; actual: ' . print_r( $actual, true ) );
} }
} }