diff --git a/core/modules/user/user.install b/core/modules/user/user.install index 615e902072..5f72169152 100644 --- a/core/modules/user/user.install +++ b/core/modules/user/user.install @@ -107,6 +107,6 @@ function user_update_8100() { /** * Add the configuration setting for password_type_reveal. */ -function user_update_8101() { - \Drupal::configFactory()->getEditable('user.settings')->set('password_type_reveal', FALSE)->save(); +function user_update_8800() { + \Drupal::configFactory()->getEditable('user.settings')->set('password_type_reveal', FALSE)->save(TRUE); } diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/PasswordRevealTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/PasswordRevealTest.php index 3c4cd06421..37a4019250 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/PasswordRevealTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/PasswordRevealTest.php @@ -2,14 +2,14 @@ namespace Drupal\FunctionalJavascriptTests\Core\Form; -use Drupal\FunctionalJavascriptTests\JavascriptTestBase; +use Drupal\FunctionalJavascriptTests\WebDriverTestBase; /** * Tests the state of elements based on another elements. * * @group javascript */ -class PasswordRevealTest extends JavascriptTestBase { +class PasswordRevealTest extends WebDriverTestBase { /** * {@inheritdoc}