Changeset 45607 for trunk/tests/phpunit/tests/file.php
- Timestamp:
- 07/08/2019 12:55:20 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/file.php
r45345 r45607 209 209 210 210 // Check to see if the system parameters prevent signature verifications. 211 if ( is_wp_error( $verify ) && 'signature_verification_unsupported' == $verify->get_error_code() ) {211 if ( is_wp_error( $verify ) && 'signature_verification_unsupported' === $verify->get_error_code() ) { 212 212 $this->markTestSkipped( 'This system does not support Signature Verification.' ); 213 213 } … … 229 229 unlink( $file ); 230 230 231 if ( is_wp_error( $verify ) && 'signature_verification_unsupported' == $verify->get_error_code() ) {231 if ( is_wp_error( $verify ) && 'signature_verification_unsupported' === $verify->get_error_code() ) { 232 232 $this->markTestSkipped( 'This system does not support Signature Verification.' ); 233 233 }
Note: See TracChangeset
for help on using the changeset viewer.