- Timestamp:
- 06/22/2020 05:24:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/wpmuValidateUserSignup.php
r46586 r48121 55 55 } 56 56 57 public function test_should_fail_for_emails_from_ non_whitelisted_domains() {57 public function test_should_fail_for_emails_from_disallowed_domains() { 58 58 $domains = array( 'foo.com', 'bar.org' ); 59 59 update_site_option( 'limited_email_domains', $domains ); … … 63 63 } 64 64 65 public function test_should_not_fail_for_emails_from_ whitelisted_domains_with_mixed_case() {65 public function test_should_not_fail_for_emails_from_allowed_domains_with_mixed_case() { 66 66 $domains = array( 'foo.com', 'bar.org' ); 67 67 update_site_option( 'limited_email_domains', $domains );
Note: See TracChangeset
for help on using the changeset viewer.