Archived
1
0
Fork 0

Refactor UserController to ProfileController.

This commit is contained in:
Henrik Hautakoski 2021-07-20 15:38:57 +02:00
parent 5117907a4d
commit b76a997948
9 changed files with 23 additions and 23 deletions

View file

@ -43,7 +43,7 @@ class CharacterCreateTest extends TestCase
->set('character.race', 'human')
->set('character.gender', 'F')
->call('save')
->assertRedirect(route('user.index'));
->assertRedirect(route('profile.index'));
// Find character and check the data.
$character = Character::where('name', 'Elise')->first();