From dde7dc7145bbaa4b1e4335bb41f29bb0fec021c1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 5 Sep 2015 14:17:24 +0000 Subject: [PATCH] Update `Tests_Sanitize_Option::test_sanitize_option()` after [33858]. See #23605. git-svn-id: https://develop.svn.wordpress.org/trunk@33907 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/option/sanitize-option.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/option/sanitize-option.php b/tests/phpunit/tests/option/sanitize-option.php index ccf2301f13..9c69c0e49a 100644 --- a/tests/phpunit/tests/option/sanitize-option.php +++ b/tests/phpunit/tests/option/sanitize-option.php @@ -70,7 +70,7 @@ class Tests_Sanitize_Option extends WP_UnitTestCase { array( 'timezone_string', 'Europe/London', 'Europe/London' ), array( 'timezone_string', get_option( 'timezone_string' ), 'invalid' ), array( 'permalink_structure', '', '' ), - array( 'permalink_structure', '/%year%/%postname%', '/%year%/ %postname%' ), + array( 'permalink_structure', '/%year%/%20%postname%', '/%year%/ %postname%' ), array( 'default_role', 'subscriber', 'subscriber' ), array( 'default_role', 'subscriber', 'invalid' ), array( 'default_role', 'editor', 'editor' ),