Changeset 48937 for trunk/tests/phpunit/tests/oembed/template.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/oembed/template.php
r47198 r48937 212 212 $GLOBALS['wp_query'] = new WP_Query(); 213 213 214 $this->assert Equals( 'foo bar', wp_embed_excerpt_more( 'foo bar' ) );214 $this->assertSame( 'foo bar', wp_embed_excerpt_more( 'foo bar' ) ); 215 215 } 216 216 … … 223 223 ); 224 224 225 $this->assert Equals( '', wp_embed_excerpt_more( '' ) );225 $this->assertSame( '', wp_embed_excerpt_more( '' ) ); 226 226 227 227 $this->go_to( get_post_embed_url( $post_id ) ); … … 234 234 ); 235 235 236 $this->assert Equals( $expected, $actual );236 $this->assertSame( $expected, $actual ); 237 237 } 238 238
Note: See TracChangeset
for help on using the changeset viewer.