mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	🤖 Auto commit for release 'develop' on 2025-05-29
This commit is contained in:
		| @@ -56,7 +56,7 @@ final class NavigationAddPeriodTest extends TestCase | ||||
|     public function testGivenAFrequencyAndSkipIntervalWhenCalculateTheDateThenReturnsTheSkippedDateSuccessful(int $skip, string $frequency, Carbon $from, Carbon $expected): void | ||||
|     { | ||||
|         $period = $this->navigation->addPeriod($from, $frequency, $skip); | ||||
|         $this->assertSame($expected->toDateString(), $period->toDateString()); | ||||
|         self::assertSame($expected->toDateString(), $period->toDateString()); | ||||
|     } | ||||
| 
 | ||||
|     public static function providePeriodsWithSkippingParam(): iterable | ||||
| @@ -108,7 +108,7 @@ final class NavigationAddPeriodTest extends TestCase | ||||
|     public function testGivenAFrequencyWhenCalculateTheDateThenReturnsTheExpectedDateSuccessful(string $frequency, Carbon $from, Carbon $expected): void | ||||
|     { | ||||
|         $period = $this->navigation->addPeriod($from, $frequency, 0); | ||||
|         $this->assertSame($expected->toDateString(), $period->toDateString()); | ||||
|         self::assertSame($expected->toDateString(), $period->toDateString()); | ||||
|     } | ||||
| 
 | ||||
|     public static function providePeriods(): Iterator | ||||
| @@ -158,7 +158,7 @@ final class NavigationAddPeriodTest extends TestCase | ||||
|     public function testGivenAIntervalWhenCallTheNextDateByIntervalMethodThenReturnsTheExpectedDateSuccessful(Periodicity $periodicity, Carbon $from, Carbon $expected): void | ||||
|     { | ||||
|         $period = $this->navigation->nextDateByInterval($from, $periodicity); | ||||
|         $this->assertSame($expected->toDateString(), $period->toDateString()); | ||||
|         self::assertSame($expected->toDateString(), $period->toDateString()); | ||||
|     } | ||||
| 
 | ||||
|     public static function provideFrequencies(): Iterator | ||||
| @@ -212,7 +212,7 @@ final class NavigationAddPeriodTest extends TestCase | ||||
|     public function testGivenAMonthFrequencyWhenCalculateTheDateThenReturnsTheLastDayOfMonthSuccessful(string $frequency, Carbon $from, Carbon $expected): void | ||||
|     { | ||||
|         $period = $this->navigation->addPeriod($from, $frequency, 0); | ||||
|         $this->assertSame($expected->toDateString(), $period->toDateString()); | ||||
|         self::assertSame($expected->toDateString(), $period->toDateString()); | ||||
|     } | ||||
| 
 | ||||
|     public static function provideMonthPeriods(): Iterator | ||||
|   | ||||
		Reference in New Issue
	
	Block a user