Skip to content

Commit

Permalink
Merge pull request #2 from jeffgreco13/1.x-dev
Browse files Browse the repository at this point in the history
fix: Contoller test failing
  • Loading branch information
jeffgreco13 authored Jan 24, 2022
2 parents c83f84e + 8958735 commit 8759cd8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/lang/en/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"title" => "Forgot password",
"heading" => "Reset your password",
"submit" => [
"label" => "Send reset email",
"label" => "Submit",
],
"notification_success" => "Check your inbox for instructions!",
],
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/EmailVerificationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace JeffGreco13\FilamentBreezy\Http\Controllers;

use App\Http\Controllers\Controller;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Auth\Events\Verified;
use Illuminate\Http\RedirectResponse;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Auth;

class EmailVerificationController extends Controller
Expand Down
5 changes: 4 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

namespace JeffGreco13\FilamentBreezy\Tests;

use Filament\FilamentServiceProvider;
use Illuminate\Database\Eloquent\Factories\Factory;
use JeffGreco13\FilamentBreezy\FilamentBreezyServiceProvider;
use Livewire\LivewireServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;

class TestCase extends Orchestra
Expand All @@ -24,7 +26,8 @@ class_basename($modelName) .
protected function getPackageProviders($app)
{
return [
//PluginServiceProvider::class,
LivewireServiceProvider::class,
FilamentServiceProvider::class,
FilamentBreezyServiceProvider::class,
];
}
Expand Down

0 comments on commit 8759cd8

Please sign in to comment.