8000 [Form][HttpFoundation] Fixes to FileField by Seldaek · Pull Request #83 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form][HttpFoundation] Fixes to FileField #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
4 commits merged into from
Mar 9, 2011
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[HttpFoundation] Fixed test breaking on windows
  • Loading branch information
Seldaek committed Mar 9, 2011
commit 30a8f4fd42592f7a5d03fbe38b198da9272e78fc
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ public function testGuessWithIncorrectPath()

public function testGuessWithNonReadablePath()
{
if (strstr(PHP_OS, 'WIN')) {
$this->markTestSkipped('Can not verify chmod operations on Windows');
}
$path = __DIR__.'/../Fixtures/to_delete';
touch($path);
chmod($path, 0333);
Expand Down
0