Merge pull request woocommerce/woocommerce-admin#2678 from woocommerce/update/unit-tests-wperror

update assertisWPError calls to assertWPError in unit tests
This commit is contained in:
Ron Rennick 2019-07-19 17:11:31 -03:00 committed by GitHub
commit 63c5285084
1 changed files with 5 additions and 5 deletions

View File

@ -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. * Test function that validates *_between query parameters for numeric values.
*/ */
public function test_rest_validate_between_numeric_arg() { 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' ), WC_Admin_Reports_Interval::rest_validate_between_numeric_arg( 'not array', null, 'param' ),
'param is not a numerically indexed array.' 'param is not a numerically indexed array.'
); );
$this->assertIsWPError( $this->assertWPError(
WC_Admin_Reports_Interval::rest_validate_between_numeric_arg( array( 1 ), null, 'param' ), WC_Admin_Reports_Interval::rest_validate_between_numeric_arg( array( 1 ), null, 'param' ),
'param must contain 2 numbers.' '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. * Test function that validates *_between query parameters for date values.
*/ */
public function rest_validate_between_date_arg() { public function rest_validate_between_date_arg() {
$this->assertIsWPError( $this->assertWPError(
WC_Admin_Reports_Interval::rest_validate_between_date_arg( 'not array', null, 'param' ), WC_Admin_Reports_Interval::rest_validate_between_date_arg( 'not array', null, 'param' ),
'param is not a numerically indexed array.' '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' ), WC_Admin_Reports_Interval::rest_validate_between_date_arg( array( '2019-01-01T00:00:00' ), null, 'param' ),
'param must contain 2 valid dates.' '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' ), WC_Admin_Reports_Interval::rest_validate_between_date_arg( array( 'not a valid date' ), null, 'param' ),
'param must contain 2 valid dates.' 'param must contain 2 valid dates.'
); );