- Timestamp:
- 07/19/2021 02:00:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/custom-css-setting.php
r51331 r51462 332 332 $post = get_post( $post_id ); 333 333 $this->assertSame( $original_title, $post->post_title ); 334 $this->assert Contains( $overridden_css, $post->post_content );335 $this->assert Contains( '/* filtered post_content */', $post->post_content );336 $this->assert Contains( '/* filtered post_content_filtered */', $post->post_content_filtered );334 $this->assertStringContainsString( $overridden_css, $post->post_content ); 335 $this->assertStringContainsString( '/* filtered post_content */', $post->post_content ); 336 $this->assertStringContainsString( '/* filtered post_content_filtered */', $post->post_content_filtered ); 337 337 } 338 338
Note: See TracChangeset
for help on using the changeset viewer.