Changeset 13314 for trunk/tests/phpunit/testcases/core/avatars.php
- Timestamp:
- 08/13/2022 08:58:51 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/core/avatars.php
r12760 r13314 328 328 ) ); 329 329 330 $this->assert Contains( 'mystery-man-50.jpg', $found );330 $this->assertStringContainsString( 'mystery-man-50.jpg', $found ); 331 331 } 332 332 … … 344 344 ) ); 345 345 346 $this->assert Contains( 'mystery-man-50.jpg', $found );346 $this->assertStringContainsString( 'mystery-man-50.jpg', $found ); 347 347 } 348 348 … … 361 361 remove_filter( 'bp_core_avatar_thumb_width', array( $this, 'filter_thumb_width' ) ); 362 362 363 $this->assert Contains( 'mystery-man.jpg', $found );363 $this->assertStringContainsString( 'mystery-man.jpg', $found ); 364 364 } 365 365
Note: See TracChangeset
for help on using the changeset viewer.