Skip to content

Commit

Permalink
style: fix tests/* after pint upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
thor committed Oct 4, 2023
1 parent 4029c26 commit 76d8dbb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/Feature/FilesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class FilesTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

/**
* Create a special tearDown method since we don't want our test files
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/TrainingExaminationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class TrainingExaminationsTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

private $examination;

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/TrainingObjectAttachmentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class TrainingObjectAttachmentTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

private $report;

Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/TrainingReportsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class TrainingReportsTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

/** @test */
public function mentor_can_access_training_reports()
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/TrainingsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class TrainingsTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

// /** @test */
// public function user_can_create_a_training_request()
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/FileUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class FileUnitTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

private $controller;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/UserUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class UserUnitTest extends TestCase
{
use WithFaker, RefreshDatabase;
use RefreshDatabase, WithFaker;

private $user;

Expand Down

0 comments on commit 76d8dbb

Please sign in to comment.