Upgrade to Laravel 13
This commit is contained in:
parent
e8e2bff5e4
commit
9f012b01e4
117 changed files with 1878 additions and 2215 deletions
|
|
@ -59,7 +59,7 @@ class ClientsTest extends TestCase
|
|||
]);
|
||||
|
||||
$response = $this->actingAs($user)
|
||||
->get('/admin/clients/' . $client->id . '/edit');
|
||||
->get('/admin/clients/'.$client->id.'/edit');
|
||||
$response->assertSee('https://jbl5.dev/notes/new');
|
||||
}
|
||||
|
||||
|
|
@ -70,7 +70,7 @@ class ClientsTest extends TestCase
|
|||
$client = MicropubClient::factory()->create();
|
||||
|
||||
$this->actingAs($user)
|
||||
->post('/admin/clients/' . $client->id, [
|
||||
->post('/admin/clients/'.$client->id, [
|
||||
'_method' => 'PUT',
|
||||
'client_url' => 'https://jbl5.dev/notes/new',
|
||||
'client_name' => 'JBL5dev',
|
||||
|
|
@ -90,7 +90,7 @@ class ClientsTest extends TestCase
|
|||
]);
|
||||
|
||||
$this->actingAs($user)
|
||||
->post('/admin/clients/' . $client->id, [
|
||||
->post('/admin/clients/'.$client->id, [
|
||||
'_method' => 'DELETE',
|
||||
]);
|
||||
$this->assertDatabaseMissing('clients', [
|
||||
|
|
|
|||
Loading…
Reference in a new issue