Ticket #42837: wp_normalize_path_tests.diff
| File wp_normalize_path_tests.diff, 580 bytes (added by , 8 years ago) |
|---|
-
tests/phpunit/tests/functions.php
diff --git a/tests/phpunit/tests/functions.php b/tests/phpunit/tests/functions.php index 329e784dae..30e6495607 100644
a b class Tests_Functions extends WP_UnitTestCase { 150 150 array( '/www/path/', '/www/path/' ), 151 151 array( '/www/path/////', '/www/path/' ), 152 152 array( '/www/path', '/www/path' ), 153 154 // PHP Stream Wrappers 155 array( 'php://input', 'php://input' ), 156 array( 'http://example.com//path.ext', 'http://example.com/path.ext' ), 153 157 ); 154 158 } 155 159