[Filesystem] fix tests on 2.3

The test introduced in #16797 used the `assertFilePermissions()` method
to test for the expected result. This worked quite well for the PR as it
was submitted for the `master` branch. However, the tests now fail on
2.3 as the `FilesystemTestCase` class which contains this method was
introduced with Symfony 2.4.
This commit is contained in:
Christian Flothmann 2015-12-19 12:10:24 +01:00
parent 0c2f1d94de
commit 9050f676af

View File

@ -492,7 +492,7 @@ class FilesystemTest extends \PHPUnit_Framework_TestCase
$this->filesystem->chmod($directory, 0753, 0000, true);
$this->assertFilePermissions(753, $subdirectory);
$this->assertEquals(753, $this->getFilePermissions($subdirectory));
}
public function testChown()