From e66b690c93a325fd65b4bb068d3be41623690142 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Wed, 12 Feb 2025 12:01:43 -0800 Subject: [PATCH] removed unnecessary base_path changes --- app/Providers/RouteServiceProvider.php | 1 - .../Notifications/Email/ExpiringAlertsNotificationTest.php | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index d3ef733de3..d5b10bde3a 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -25,7 +25,6 @@ class RouteServiceProvider extends ServiceProvider $this->mapWebRoutes(); require base_path('routes/scim.php'); - require base_path('routes/mobile.php'); }); } diff --git a/tests/Feature/Notifications/Email/ExpiringAlertsNotificationTest.php b/tests/Feature/Notifications/Email/ExpiringAlertsNotificationTest.php index 0860d2efe7..220f6543c8 100644 --- a/tests/Feature/Notifications/Email/ExpiringAlertsNotificationTest.php +++ b/tests/Feature/Notifications/Email/ExpiringAlertsNotificationTest.php @@ -57,6 +57,7 @@ class ExpiringAlertsNotificationTest extends TestCase public function testExpiringLicensesEmailNotification() { + $this->markIncompleteIfSqlite(); Mail::fake(); $this->settings->enableAlertEmail('admin@example.com'); $this->settings->setAlertInterval(60);