- Timestamp:
- 02/10/2021 01:24:24 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-application-passwords-controller.php
r50114 r50284 892 892 $this->assertNotWPError( $response->as_error() ); 893 893 894 $this->assert Equals( $password['uuid'], $response->get_data()['uuid'] );894 $this->assertSame( $password['uuid'], $response->get_data()['uuid'] ); 895 895 } 896 896 … … 902 902 $response = rest_do_request( '/wp/v2/users/' . self::$admin . '/application-passwords/introspect' ); 903 903 904 $this->assert Equals( $password['uuid'], $response->get_data()['uuid'] );904 $this->assertSame( $password['uuid'], $response->get_data()['uuid'] ); 905 905 } 906 906
Note: See TracChangeset
for help on using the changeset viewer.