Changeset 51449
- Timestamp:
- 07/16/2021 07:13:11 PM (3 years ago)
- Location:
- trunk/tests/phpunit/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/nav-menu.php
r51337 r51449 41 41 ); 42 42 43 $this->assertS ame( 0, strpos( $menu, '<ul' ));43 $this->assertStringStartsWith( '<ul', $menu ); 44 44 } 45 45 -
trunk/tests/phpunit/tests/url.php
r51419 r51449 251 251 252 252 // is_ssl() should determine the scheme in the admin. 253 $this->assertS ame( 0, strpos( $home, 'http://' ));253 $this->assertStringStartsWith( 'http://', $home ); 254 254 $_SERVER['HTTPS'] = 'on'; 255 255 $this->assertSame( $home_https, network_home_url() );
Note: See TracChangeset
for help on using the changeset viewer.