From a260623b18a17bc629f3ab5c8db9c6f325d782c5 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 24 Jul 2014 12:44:07 +0200 Subject: [PATCH] [HttpFoundation] moved test file to the right directory --- .../Component/HttpFoundation/Tests/BinaryFileResponseTest.php | 2 +- .../HttpFoundation/{Resources/stubs => Tests/File}/FakeFile.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/Symfony/Component/HttpFoundation/{Resources/stubs => Tests/File}/FakeFile.php (92%) diff --git a/src/Symfony/Component/HttpFoundation/Tests/BinaryFileResponseTest.php b/src/Symfony/Component/HttpFoundation/Tests/BinaryFileResponseTest.php index 397192b885..ff0b1aeabd 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/BinaryFileResponseTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/BinaryFileResponseTest.php @@ -14,7 +14,7 @@ namespace Symfony\Component\HttpFoundation\Tests; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\ResponseHeaderBag; -use Symfony\Component\HttpFoundation\Resources\stubs\FakeFile; +use Symfony\Component\HttpFoundation\Tests\File\FakeFile; class BinaryFileResponseTest extends ResponseTestCase { diff --git a/src/Symfony/Component/HttpFoundation/Resources/stubs/FakeFile.php b/src/Symfony/Component/HttpFoundation/Tests/File/FakeFile.php similarity index 92% rename from src/Symfony/Component/HttpFoundation/Resources/stubs/FakeFile.php rename to src/Symfony/Component/HttpFoundation/Tests/File/FakeFile.php index 0aecc20b08..c415989f2f 100644 --- a/src/Symfony/Component/HttpFoundation/Resources/stubs/FakeFile.php +++ b/src/Symfony/Component/HttpFoundation/Tests/File/FakeFile.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\HttpFoundation\Resources\stubs; +namespace Symfony\Component\HttpFoundation\Tests\File; use Symfony\Component\HttpFoundation\File\File as OrigFile;