diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-03 22:22:08 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-03 22:22:08 +0200 |
commit | 122e2a7b4a5a994b5a55bafd7304aa879f3bd17b (patch) | |
tree | 6c56b9db86add4e08c7d27d13dcec2545cfb39e3 /t/02-registration.t | |
parent | 2810eb490ca8465343e009f9d9a0f8be6400eb11 (diff) |
adjust tests for /account/... URL changes
Diffstat (limited to 't/02-registration.t')
-rw-r--r-- | t/02-registration.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/02-registration.t b/t/02-registration.t index b595337..71783d4 100644 --- a/t/02-registration.t +++ b/t/02-registration.t @@ -128,11 +128,11 @@ $t->get_ok('/account'); $t->status_is(200)->content_unlike(qr{wird gelöscht}); $csrf_token - = $t->ua->get('/change_password')->res->dom->at('input[name=csrf_token]') + = $t->ua->get('/account/password')->res->dom->at('input[name=csrf_token]') ->attr('value'); $t->post_ok( - '/change_password' => form => { + '/account/password' => form => { csrf_token => $csrf_token, oldpw => 'foofoofoo', newpw => 'barbarbar', |