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
There is an issue some of the test when comparing $file containing filepath such
$file == 'C:\Users\USERNA~1...'
and symlink file path where the filepath is such
'C:\Users\Username...
on statement such
$this->assertEquals($file, readlink($link));
The fix is to call the readlink on $file so it leads to $file = 'C:\Users\Username... since a 'touch' has been done on the file and that the file exists, such
$this->assertEquals(readlink($file), readlink($link));
I'm going to provide the pull request in a short while.