Fix Pint formatting

This commit is contained in:
root
2026-06-09 01:25:14 -04:00
parent 6be4875c5e
commit 20a0b6c4e5
1485 changed files with 11318 additions and 10273 deletions
@@ -92,7 +92,7 @@ class ClassProgressControllerTest extends TestCase
Sanctum::actingAs($user);
$response = $this->getJson('/api/v1/class-progress/' . $report->id);
$response = $this->getJson('/api/v1/class-progress/'.$report->id);
$response->assertOk();
$response->assertJsonPath('status', true);
@@ -110,7 +110,7 @@ class ClassProgressControllerTest extends TestCase
Sanctum::actingAs($user);
$response = $this->patchJson('/api/v1/class-progress/' . $report->id, [
$response = $this->patchJson('/api/v1/class-progress/'.$report->id, [
'status' => 'behind',
]);
@@ -132,7 +132,7 @@ class ClassProgressControllerTest extends TestCase
Sanctum::actingAs($user);
$response = $this->deleteJson('/api/v1/class-progress/' . $report->id);
$response = $this->deleteJson('/api/v1/class-progress/'.$report->id);
$response->assertOk();
$this->assertDatabaseMissing('class_progress_reports', [
@@ -152,7 +152,7 @@ class ClassProgressControllerTest extends TestCase
Sanctum::actingAs($other);
$response = $this->getJson('/api/v1/class-progress/' . $report->id);
$response = $this->getJson('/api/v1/class-progress/'.$report->id);
$response->assertStatus(403);
}
@@ -187,7 +187,7 @@ class ClassProgressControllerTest extends TestCase
Sanctum::actingAs($user);
$response = $this->get('/api/v1/class-progress/attachments/' . $attachment->id);
$response = $this->get('/api/v1/class-progress/attachments/'.$attachment->id);
$response->assertOk();
}