Fix regression tests for password reset in server mode

This commit is contained in:
Harshal Dhumal
2017-11-30 13:16:59 +00:00
committed by Dave Page
parent 54389595da
commit 1a4e21e6dd
4 changed files with 14 additions and 8 deletions

View File

@@ -8,11 +8,11 @@
##########################################################################
def change_password(self):
response = self.tester.get('/change', follow_redirects=True)
response = self.tester.get('/browser/change_password', follow_redirects=True)
self.assertTrue('pgAdmin 4 Password Change' in response.data.decode(
'utf-8'))
response = self.tester.post('/change', data=dict(
response = self.tester.post('/browser/change_password', data=dict(
password=self.password,
new_password=self.new_password,
new_password_confirm=self.new_password_confirm),