Skip to content

Commit 508c9b1

Browse files
Merge branch '7.4' into 8.0
* 7.4: [DependencyInjection][Routing] Fix nested config imports when returning PHP arrays fix compatibility with Relay 0.12.1 [TypeInfo] Fix resolving use statements with line breaks [FrameworkBundle] Fix normalization of enums in workflow transitions Add missing return type for docblock Closure don't use a fixed date fixture when assertions depend on relative times [FrameworkBundle] Fix secrets:encrypt-from-local [Security] Add support for `Sec-Fetch-Site` to `SameOriginCsrfTokenManager` [Console] Optimize mostRecentlyEnteredValue() method [HttpClient] Add QUERY to the list of retriable HTTP methods Update regular expression in URL validator [AssetMapper] Fix parsing @import that don't use url() [Messenger] Add retry delay on amazon sqs [Serializer] CsvEncoder to escape values starting with line feed when escape formulas is enabled
2 parents bd8b14b + 38665c9 commit 508c9b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Iterator/RealIteratorTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public static function setUpBeforeClass(): void
7272
file_put_contents(self::toAbsolute('test.php'), str_repeat(' ', 800));
7373
file_put_contents(self::toAbsolute('test.py'), str_repeat(' ', 2000));
7474

75-
touch(self::toAbsolute('foo/bar.tmp'), strtotime('2005-10-15'));
76-
touch(self::toAbsolute('test.php'), strtotime('2005-10-15'));
75+
touch(self::toAbsolute('foo/bar.tmp'), strtotime('-19 years'));
76+
touch(self::toAbsolute('test.php'), strtotime('-19 years'));
7777

7878
if (FinderTest::class === static::class) {
7979
$fs = new Filesystem();

0 commit comments

Comments
 (0)