X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2FPreferencesTest.php;h=289853de57a2efb4c0a6010fb67c3bac21ac882f;hb=7331bc46e005ec5dbae0ed7e27fda17c5065f821;hp=5841bb6f07ff51b28c7bb5cf7e1902fc45d1799a;hpb=1a533fa0ccdd1ed28e76a89951b9d56c473fa417;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/includes/PreferencesTest.php b/tests/phpunit/includes/PreferencesTest.php index 5841bb6f07..289853de57 100644 --- a/tests/phpunit/includes/PreferencesTest.php +++ b/tests/phpunit/includes/PreferencesTest.php @@ -35,51 +35,51 @@ class PreferencesTest extends MediaWikiTestCase { protected function setUp() { parent::setUp(); - $this->setMwGlobals( array( + $this->setMwGlobals( [ 'wgEnableEmail' => true, 'wgEmailAuthentication' => true, - ) ); + ] ); } /** * Placeholder to verify bug 34302 * @covers Preferences::profilePreferences */ - public function testEmailFieldsWhenUserHasNoEmail() { + public function testEmailAuthenticationFieldWhenUserHasNoEmail() { $prefs = $this->prefsFor( 'noemail' ); $this->assertArrayHasKey( 'cssclass', - $prefs['emailaddress'] + $prefs['emailauthentication'] ); - $this->assertEquals( 'mw-email-none', $prefs['emailaddress']['cssclass'] ); + $this->assertEquals( 'mw-email-none', $prefs['emailauthentication']['cssclass'] ); } /** * Placeholder to verify bug 34302 * @covers Preferences::profilePreferences */ - public function testEmailFieldsWhenUserEmailNotAuthenticated() { + public function testEmailAuthenticationFieldWhenUserEmailNotAuthenticated() { $prefs = $this->prefsFor( 'notauth' ); $this->assertArrayHasKey( 'cssclass', - $prefs['emailaddress'] + $prefs['emailauthentication'] ); - $this->assertEquals( 'mw-email-not-authenticated', $prefs['emailaddress']['cssclass'] ); + $this->assertEquals( 'mw-email-not-authenticated', $prefs['emailauthentication']['cssclass'] ); } /** * Placeholder to verify bug 34302 * @covers Preferences::profilePreferences */ - public function testEmailFieldsWhenUserEmailIsAuthenticated() { + public function testEmailAuthenticationFieldWhenUserEmailIsAuthenticated() { $prefs = $this->prefsFor( 'auth' ); $this->assertArrayHasKey( 'cssclass', - $prefs['emailaddress'] + $prefs['emailauthentication'] ); - $this->assertEquals( 'mw-email-authenticated', $prefs['emailaddress']['cssclass'] ); + $this->assertEquals( 'mw-email-authenticated', $prefs['emailauthentication']['cssclass'] ); } /** Helper */ protected function prefsFor( $user_key ) { - $preferences = array(); + $preferences = []; Preferences::profilePreferences( $this->prefUsers[$user_key], $this->context,