From 135ac032be2cd7c6280d9cf3093c39ef4f9cfaa5 Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Fri, 19 Jul 2019 16:45:52 -0300 Subject: [PATCH] update assertisWPError calls to assertWPError in unit tests --- .../woocommerce-admin/tests/api/reports-interval.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/woocommerce-admin/tests/api/reports-interval.php b/plugins/woocommerce-admin/tests/api/reports-interval.php index 2b08f2b6855..9881ae69f8b 100644 --- a/plugins/woocommerce-admin/tests/api/reports-interval.php +++ b/plugins/woocommerce-admin/tests/api/reports-interval.php @@ -884,12 +884,12 @@ class WC_Tests_Reports_Interval_Stats extends WC_Unit_Test_Case { * Test function that validates *_between query parameters for numeric values. */ public function test_rest_validate_between_numeric_arg() { - $this->assertIsWPError( + $this->assertWPError( WC_Admin_Reports_Interval::rest_validate_between_numeric_arg( 'not array', null, 'param' ), 'param is not a numerically indexed array.' ); - $this->assertIsWPError( + $this->assertWPError( WC_Admin_Reports_Interval::rest_validate_between_numeric_arg( array( 1 ), null, 'param' ), 'param must contain 2 numbers.' ); @@ -903,17 +903,17 @@ class WC_Tests_Reports_Interval_Stats extends WC_Unit_Test_Case { * Test function that validates *_between query parameters for date values. */ public function rest_validate_between_date_arg() { - $this->assertIsWPError( + $this->assertWPError( WC_Admin_Reports_Interval::rest_validate_between_date_arg( 'not array', null, 'param' ), 'param is not a numerically indexed array.' ); - $this->assertIsWPError( + $this->assertWPError( WC_Admin_Reports_Interval::rest_validate_between_date_arg( array( '2019-01-01T00:00:00' ), null, 'param' ), 'param must contain 2 valid dates.' ); - $this->assertIsWPError( + $this->assertWPError( WC_Admin_Reports_Interval::rest_validate_between_date_arg( array( 'not a valid date' ), null, 'param' ), 'param must contain 2 valid dates.' );