Changeset 48937 for trunk/tests/phpunit/tests/post/filtering.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/filtering.php
r47122 r48937 37 37 $post = get_post( $id ); 38 38 39 $this->assert Equals( $expected, $post->post_content );39 $this->assertSame( $expected, $post->post_content ); 40 40 } 41 41 … … 54 54 $post = get_post( $id ); 55 55 56 $this->assert Equals( $expected, $post->post_content );56 $this->assertSame( $expected, $post->post_content ); 57 57 } 58 58 … … 71 71 $post = get_post( $id ); 72 72 73 $this->assert Equals( $expected, $post->post_content );73 $this->assertSame( $expected, $post->post_content ); 74 74 } 75 75 … … 91 91 $post = get_post( $id ); 92 92 93 $this->assert Equals( $expected, $post->post_content );93 $this->assertSame( $expected, $post->post_content ); 94 94 } 95 95 … … 111 111 $post = get_post( $id ); 112 112 113 $this->assert Equals( $content, $post->post_content );113 $this->assertSame( $content, $post->post_content ); 114 114 } 115 115 }
Note: See TracChangeset
for help on using the changeset viewer.