Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
felixgilles committed Aug 2, 2024
1 parent 1a6cbdd commit cc364ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 0 additions & 4 deletions database/factories/NewsPostFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ public function definition(): array
'featured' => false,
'intro' => $this->faker->paragraph(2),
'content' => $this->faker->paragraph(5, true),
'seo_title' => $this->faker->sentence(4),
'seo_description' => $this->faker->paragraph(2),
'og_title' => $this->faker->sentence(4),
'og_description' => $this->faker->paragraph(2),
];
}
}
2 changes: 2 additions & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Novius\LaravelNovaNews\Tests;

use Novius\LaravelMeta\LaravelMetaServiceProvider;
use Novius\LaravelNovaNews\LaravelNovaNewsServiceProvider;
use Novius\LaravelPublishable\LaravelPublishableServiceProvider;
use Novius\LaravelTranslatable\LaravelTranslatableServiceProvider;
Expand All @@ -22,6 +23,7 @@ protected function getPackageProviders($app): array
LaravelNovaNewsServiceProvider::class,
LaravelTranslatableServiceProvider::class,
LaravelPublishableServiceProvider::class,
LaravelMetaServiceProvider::class,
];
}
}

0 comments on commit cc364ce

Please sign in to comment.