`is_email_address_unsafe()` tests should only be run on multisite.

See [32638].

git-svn-id: https://develop.svn.wordpress.org/trunk@32646 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2015-05-29 12:37:51 +00:00
parent ea9de1aacd
commit 25afc4b16a
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
<?php
if ( is_multisite() ) :
/**
* @group multisite
*/
@ -119,3 +121,5 @@ class Tests_Multisite_IsEmailAddressUnsafe extends WP_UnitTestCase {
);
}
}
endif;