Changeset 48937 for trunk/tests/phpunit/tests/post/output.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/output.php
r47122 r48937 60 60 $this->assertNull( the_post() ); 61 61 62 $this->assert Equals( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) );62 $this->assertSame( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) ); 63 63 } 64 64 … … 88 88 $this->assertNull( the_post() ); 89 89 90 $this->assert Equals( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) );90 $this->assertSame( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) ); 91 91 } 92 92 … … 126 126 $this->assertNull( the_post() ); 127 127 128 $this->assert Equals( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) );128 $this->assertSame( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) ); 129 129 } 130 130 … … 148 148 $this->assertNull( the_post() ); 149 149 150 $this->assert Equals( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) );150 $this->assertSame( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) ); 151 151 152 152 kses_remove_filters(); … … 172 172 $this->assertNull( the_post() ); 173 173 174 $this->assert Equals( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) );174 $this->assertSame( strip_ws( $expected ), strip_ws( get_echo( 'the_content' ) ) ); 175 175 176 176 kses_remove_filters();
Note: See TracChangeset
for help on using the changeset viewer.