- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/allowedProtocols.php
r47122 r48937 30 30 */ 31 31 function test_allowed_protocols( $protocol, $url ) { 32 $this->assert Equals( $url, esc_url( $url, $protocol ) );33 $this->assert Equals( $url, esc_url( $url, wp_allowed_protocols() ) );32 $this->assertSame( $url, esc_url( $url, $protocol ) ); 33 $this->assertSame( $url, esc_url( $url, wp_allowed_protocols() ) ); 34 34 } 35 35
Note: See TracChangeset
for help on using the changeset viewer.