From 1a92461e4b5a733405847ab3a0b8303dfae873d9 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Wed, 1 Oct 2025 21:24:06 +0200 Subject: [PATCH] [ticket/17539] Set pass type to any for functional reg tests PHPBB-17539 --- tests/functional/registration_test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/functional/registration_test.php b/tests/functional/registration_test.php index 9b77feaa86..e47d8193b5 100644 --- a/tests/functional/registration_test.php +++ b/tests/functional/registration_test.php @@ -24,6 +24,7 @@ class phpbb_functional_registration_test extends phpbb_functional_test_case $crawler = self::request('GET', "adm/index.php?i=acp_board&mode=registration&sid={$this->sid}"); $form = $crawler->selectButton('Submit')->form(); $form['config[enable_confirm]']->setValue('0'); + $form['config[pass_complex]']->setValue('PASS_TYPE_ANY'); $crawler = self::submit($form); $this->assertContainsLang('CONFIG_UPDATED', $crawler->filter('#main .successbox')->text());