Changeset 51462 for trunk/tests/phpunit/tests/post/template.php
- Timestamp:
- 07/19/2021 02:00:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/template.php
r50396 r51462 238 238 239 239 // Should contain page ID by default. 240 $this->assert Contains( 'value="' . $p . '"', $found );240 $this->assertStringContainsString( 'value="' . $p . '"', $found ); 241 241 } 242 242 … … 258 258 ); 259 259 260 $this->assert Contains( 'value="' . $p . '"', $found );260 $this->assertStringContainsString( 'value="' . $p . '"', $found ); 261 261 } 262 262 … … 279 279 ); 280 280 281 $this->assert Contains( 'value="foo"', $found );281 $this->assertStringContainsString( 'value="foo"', $found ); 282 282 } 283 283 … … 300 300 ); 301 301 302 $this->assert Contains( 'value="' . $p . '"', $found );302 $this->assertStringContainsString( 'value="' . $p . '"', $found ); 303 303 } 304 304
Note: See TracChangeset
for help on using the changeset viewer.