Skip to content

Commit

Permalink
Update database-testing.md
Browse files Browse the repository at this point in the history
beachcoffee authored Apr 7, 2020
1 parent 6a13fee commit d91fdd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database-testing.md
Original file line number Diff line number Diff line change
@@ -263,7 +263,7 @@ If you would like to use [database seeders](/docs/{{version}}/seeding) to popula

use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use OrderSeeder;
use OrderStatusSeeder;
use Tests\TestCase;

class ExampleTest extends TestCase
@@ -281,7 +281,7 @@ If you would like to use [database seeders](/docs/{{version}}/seeding) to popula
$this->seed();

// Run a single seeder...
$this->seed(OrderSeeder::class);
$this->seed(OrderStatusSeeder::class);

// ...
}

0 comments on commit d91fdd1

Please sign in to comment.