From 933e3bbf1f6938f26f9b77c6e16539f11c41467d Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 30 Jan 2025 22:51:53 -0500 Subject: [PATCH] Attempts to resolve issue with tests CI --- .github/workflows/tests.yaml | 2 +- ...{ManageOAuthConnections.php => ManageOauthConnections.php} | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) rename app/Livewire/Profile/{ManageOAuthConnections.php => ManageOauthConnections.php} (95%) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 2ec5011..73ed500 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -46,7 +46,7 @@ jobs: run: php artisan storage:link - name: Run Tests - run: php artisan test --compact + run: php artisan test - name: Display Laravel Log if: failure() diff --git a/app/Livewire/Profile/ManageOAuthConnections.php b/app/Livewire/Profile/ManageOauthConnections.php similarity index 95% rename from app/Livewire/Profile/ManageOAuthConnections.php rename to app/Livewire/Profile/ManageOauthConnections.php index 5357ee4..ca59617 100644 --- a/app/Livewire/Profile/ManageOAuthConnections.php +++ b/app/Livewire/Profile/ManageOauthConnections.php @@ -11,7 +11,7 @@ use Livewire\Attributes\Locked; use Livewire\Attributes\On; use Livewire\Component; -class ManageOAuthConnections extends Component +class ManageOauthConnections extends Component { use AuthorizesRequests; @@ -37,8 +37,6 @@ class ManageOAuthConnections extends Component */ public function mount(): void { - $this->setName('profile.manage-oauth-connections'); - $this->user = auth()->user(); }