diff --git a/tests/integration/Api/Autocomplete/AccountControllerTest.php b/tests/integration/Api/Autocomplete/AccountControllerTest.php index c268f9fb2e..7801028161 100644 --- a/tests/integration/Api/Autocomplete/AccountControllerTest.php +++ b/tests/integration/Api/Autocomplete/AccountControllerTest.php @@ -32,7 +32,6 @@ class AccountControllerTest extends TestCase { /** * @covers \FireflyIII\Api\V1\Controllers\Autocomplete\AccountController - * @runInSeparateProcess */ public function testGivenAnUnauthenticatedRequestWhenCallingTheAccountsEndpointThenReturns401HttpCode(): void { diff --git a/tests/integration/Support/NavigationCustomEndOfPeriodTest.php b/tests/integration/Support/NavigationCustomEndOfPeriodTest.php index 6afb052577..51526f93c4 100644 --- a/tests/integration/Support/NavigationCustomEndOfPeriodTest.php +++ b/tests/integration/Support/NavigationCustomEndOfPeriodTest.php @@ -32,13 +32,12 @@ use Tests\integration\TestCase; class NavigationCustomEndOfPeriodTest extends TestCase { /** - * @runInSeparateProcess * @preserveGlobalState disabled */ public function testGivenADateAndCustomFrequencyWhenCalculateTheDateThenReturnsTheEndOfMonthSuccessful() { $from = Carbon::parse('2023-08-05'); - $expected = Carbon::parse('2023-09-03'); + $expected = Carbon::parse('2023-09-04'); $navigation = new Navigation(); $period = $navigation->endOfPeriod($from, 'custom');