tests: fix typo in migration 🤦‍♂️ and adapt tests (#874)

This commit is contained in:
Markus Podar
2020-01-12 18:23:27 +01:00
committed by Barry vd. Heuvel
parent 972befd7aa
commit 6af1f32d96
4 changed files with 7 additions and 1 deletions
@@ -8,7 +8,7 @@ class SimpleTable extends Migration
{
public function up(): void
{
Schema::create('simple', function (Blueprint $table) {
Schema::create('simples', function (Blueprint $table) {
$table->bigIncrements('id');
});
}