Skip to content

Commit

Permalink
Update TestCase.php
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogermani87 authored Apr 21, 2024
1 parent 0622322 commit 3550b23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace VendorName\Skeleton\Tests;
namespace MarcoGermani87\FilamentHcaptcha\Tests;

use Illuminate\Database\Eloquent\Factories\Factory;
use Orchestra\Testbench\TestCase as Orchestra;
use VendorName\Skeleton\SkeletonServiceProvider;
use MarcoGermani87\FilamentHcaptcha\FilamentHcaptchaServiceProvider;

class TestCase extends Orchestra
{
Expand All @@ -13,14 +13,14 @@ protected function setUp(): void
parent::setUp();

Factory::guessFactoryNamesUsing(
fn (string $modelName) => 'VendorName\\Skeleton\\Database\\Factories\\'.class_basename($modelName).'Factory'
fn (string $modelName) => 'MarcoGermani87\\FilamentHcaptcha\\Database\\Factories\\'.class_basename($modelName).'Factory'
);
}

protected function getPackageProviders($app)
{
return [
SkeletonServiceProvider::class,
FilamentHcaptchaServiceProvider::class,
];
}

Expand Down

0 comments on commit 3550b23

Please sign in to comment.