diff --git a/tests/Unit/PageControllerTest.php b/tests/Unit/PageControllerTest.php index aa2cb8db9..a030b7edc 100644 --- a/tests/Unit/PageControllerTest.php +++ b/tests/Unit/PageControllerTest.php @@ -8,8 +8,8 @@ use App\User; use Faker\Factory as FakerFactory; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Validator; +use Illuminate\Support\Str; use Tests\TestCase; -Use Illuminate\Support\Str; class PageControllerTest extends TestCase { diff --git a/tests/Unit/TicketControllerTest.php b/tests/Unit/TicketControllerTest.php index 9af5a5e9b..862182382 100644 --- a/tests/Unit/TicketControllerTest.php +++ b/tests/Unit/TicketControllerTest.php @@ -8,8 +8,9 @@ use App\User; use Faker\Factory as FakerFactory; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Lang; -use Tests\TestCase; use Illuminate\Support\Str; +use Tests\TestCase; + class TicketControllerTest extends TestCase { /** @@ -153,7 +154,7 @@ class TicketControllerTest extends TestCase 'user_name' => $faker->unique()->userName(), 'password' => $password, 'active' => 1, - 'role' => 'user', + 'role' => 'user', ]); $user->save();