diff options
| author | Maat <maat-pub@mageia.biz> | 2020-05-09 01:15:08 +0200 | 
|---|---|---|
| committer | Maat <maat-pub@mageia.biz> | 2020-05-09 01:15:08 +0200 | 
| commit | 6985226b17e8a0ef0a720bf1d12fe0c216e13dab (patch) | |
| tree | 116d2565ac02c40abe0548863c6badf8ec3e1d1e /tests/functional/forgot_password_test.php | |
| parent | 8ea437e30605e0f66b5220bf904a61d7c1d11ddd (diff) | |
| parent | 8d00784dfe2c8bcb10843ff70b4cfa998d703285 (diff) | |
| download | forums-master.tar forums-master.tar.gz forums-master.tar.bz2 forums-master.tar.xz forums-master.zip | |
Diffstat (limited to 'tests/functional/forgot_password_test.php')
| -rw-r--r-- | tests/functional/forgot_password_test.php | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/tests/functional/forgot_password_test.php b/tests/functional/forgot_password_test.php index 64fa19557f..10946fe5a9 100644 --- a/tests/functional/forgot_password_test.php +++ b/tests/functional/forgot_password_test.php @@ -20,8 +20,8 @@ class phpbb_functional_forgot_password_test extends phpbb_functional_test_case  	{  		global $config;  		$this->add_lang('ucp'); -		$crawler = self::request('GET', 'ucp.php?mode=sendpassword'); -		$this->assertEquals($this->lang('SEND_PASSWORD'), $crawler->filter('h2')->text()); +		$crawler = self::request('GET', 'app.php/user/forgot_password'); +		$this->assertEquals($this->lang('RESET_PASSWORD'), $crawler->filter('h2')->text());  	}  	public function test_forgot_password_disabled() @@ -40,12 +40,12 @@ class phpbb_functional_forgot_password_test extends phpbb_functional_test_case  		$this->logout(); -		$crawler = self::request('GET', 'ucp.php?mode=sendpassword'); +		$crawler = self::request('GET', 'app.php/user/forgot_password');  		$this->assertContains($this->lang('UCP_PASSWORD_RESET_DISABLED', '', ''), $crawler->text());  	} -	public function tearDown() +	public function tearDown(): void  	{  		$this->login();  		$this->admin_login(); | 
