fix lint and test
Tests & Lint & Deploy to Railway / build (2.6.6, 20.x, 8.3) (push) Successful in 1m46s Details
Tests & Lint & Deploy to Railway / deploy (push) Successful in 32s Details

This commit is contained in:
aslan 2024-03-13 11:04:38 +03:00
parent ebe604293f
commit 8a6e1bea3d
2 changed files with 5 additions and 20 deletions

View File

@ -56,7 +56,11 @@ class EntranceExaminationController extends Controller
Log::channel('app') Log::channel('app')
->info( ->info(
'CREATE вступ. испытания {entranceExamination} - user {user}', 'CREATE вступ. испытания {entranceExamination} - user {user}',
['user' => Auth::user()->name, 'entranceExamination' => $entranceExamination->name, 'data' => $validated] [
'user' => Auth::user()->name,
'entranceExamination' => $entranceExamination->name,
'data' => $validated
]
); );
return redirect()->route('entrance_examinations.index'); return redirect()->route('entrance_examinations.index');

View File

@ -1,19 +0,0 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function testTheApplicationReturnsASuccessfulResponse(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}