Changeset 48937 for trunk/tests/phpunit/tests/rewrite/numericSlugs.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rewrite/numericSlugs.php
r47122 r48937 76 76 ); 77 77 78 $this->assert Equals( '2015', url_to_postid( get_permalink( '2015' ) ) );78 $this->assertSame( 2015, url_to_postid( get_permalink( '2015' ) ) ); 79 79 } 80 80 … … 110 110 ); 111 111 112 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );112 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 113 113 } 114 114 … … 146 146 ); 147 147 148 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );148 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 149 149 } 150 150 … … 182 182 ); 183 183 184 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );184 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 185 185 } 186 186 … … 216 216 ); 217 217 218 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );218 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 219 219 } 220 220 … … 250 250 ); 251 251 252 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );252 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 253 253 } 254 254 … … 286 286 ); 287 287 288 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );288 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 289 289 } 290 290 … … 320 320 ); 321 321 322 $this->assert Equals( $id, url_to_postid( get_permalink( $id ) ) );322 $this->assertSame( $id, url_to_postid( get_permalink( $id ) ) ); 323 323 } 324 324
Note: See TracChangeset
for help on using the changeset viewer.