From e91f7f6d00020fbd8b642c18acae36665a3127a0 Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Thu, 14 Feb 2019 19:14:43 -0400 Subject: [PATCH] phpcs for reports-customers.php --- plugins/woocommerce-admin/tests/api/reports-customers.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/woocommerce-admin/tests/api/reports-customers.php b/plugins/woocommerce-admin/tests/api/reports-customers.php index 6602c4f5d1d..e774d27a5ea 100644 --- a/plugins/woocommerce-admin/tests/api/reports-customers.php +++ b/plugins/woocommerce-admin/tests/api/reports-customers.php @@ -136,7 +136,7 @@ class WC_Tests_API_Reports_Customers extends WC_REST_Unit_Test_Case { WC_Helper_Queue::run_all_pending(); - $request = new WP_REST_Request( 'GET', $this->endpoint ); + $request = new WP_REST_Request( 'GET', $this->endpoint ); $request->set_query_params( array( 'per_page' => 5, @@ -175,8 +175,8 @@ class WC_Tests_API_Reports_Customers extends WC_REST_Unit_Test_Case { // Test name and last_order parameters. $request->set_query_params( array( - 'search' => 'Justin', - 'last_order_after' => date( 'Y-m-d' ) . 'T00:00:00Z', + 'search' => 'Justin', + 'last_order_after' => date( 'Y-m-d' ) . 'T00:00:00Z', ) ); $response = $this->server->dispatch( $request );