You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1) Symfony\Component\Filesystem\Tests\FilesystemTest::testTempnamOnUnwritableFallsBackToSysTmp
Failed asserting that 'file:///private/var/folders/6x/xd9z4xdd3n37crk7sbs9tlh80000gn/T/baroQ0fRi' starts with "file:///var/folders/6x/xd9z4xdd3n37crk7sbs9tlh80000gn/T".
The test fails because sys_get_temp_dir() yields you a dir inside /var which is a symlink on OSX /var -> /private/var
The text was updated successfully, but these errors were encountered:
…retto460)
This PR was submitted for the master branch but it was merged into the 2.8 branch instead (closes#16633).
Discussion
----------
[Filesystem] Fixed failing test due to tempdir symlink
| Q | A
| ------------- | ---
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | #16632
| License | MIT
| Doc PR |
Fixes the failing test referred in #16632
Commits
-------
3aee6b9 Fix: Resolve tempdir symlink, not working on OSX
There is a failing test on Filesystem component.
The test fails because
sys_get_temp_dir()
yields you a dir inside/var
which is a symlink on OSX/var -> /private/var
The text was updated successfully, but these errors were encountered: