Skip to content

Commit cb0e091

Browse files
committed
update tests
1 parent 35decbc commit cb0e091

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Feature/Settings/ProfileUpdateTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function test_profile_information_can_be_updated()
2828
$response = $this
2929
->actingAs($user)
3030
->patch('/settings/profile', [
31-
'name' => 'Test User',
31+
'name' => 'Updated Name',
3232
]);
3333

3434
$response
@@ -37,7 +37,7 @@ public function test_profile_information_can_be_updated()
3737

3838
$user->refresh();
3939

40-
$this->assertSame('Test User', $user->name);
40+
$this->assertSame('Updated Name', $user->name);
4141
}
4242

4343
public function test_user_can_delete_their_account()

0 commit comments

Comments
 (0)