Changeset 51462 for trunk/tests/phpunit/tests/general/paginateLinks.php
- Timestamp:
- 07/19/2021 02:00:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/general/paginateLinks.php
r50339 r51462 312 312 ); 313 313 314 $this->assert Contains( '?foo=1', $links[1] );315 $this->assert Contains( '?foo=2', $links[2] );316 $this->assert Contains( '?foo=4', $links[4] );317 $this->assert Contains( '?foo=5', $links[5] );314 $this->assertStringContainsString( '?foo=1', $links[1] ); 315 $this->assertStringContainsString( '?foo=2', $links[2] ); 316 $this->assertStringContainsString( '?foo=4', $links[4] ); 317 $this->assertStringContainsString( '?foo=5', $links[5] ); 318 318 319 319 $_SERVER['REQUEST_URI'] = $request_uri;
Note: See TracChangeset
for help on using the changeset viewer.