Refactor UserController to ProfileController.
This commit is contained in:
parent
5117907a4d
commit
b76a997948
9 changed files with 23 additions and 23 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Reference in a new issue