Fix #6374 move FormBuilderInterface from Tests to Test

This commit is contained in:
Tom Van Looy 2012-12-15 21:50:02 +01:00
parent b1f2c2b9e9
commit f56a2b908c
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form\Tests;
namespace Symfony\Component\Form\Test;
interface FormBuilderInterface extends \Iterator, \Symfony\Component\Form\FormBuilderInterface
{

View File

@ -638,6 +638,6 @@ class FormFactoryTest extends \PHPUnit_Framework_TestCase
private function getMockFormBuilder()
{
return $this->getMock('Symfony\Component\Form\Tests\FormBuilderInterface');
return $this->getMock('Symfony\Component\Form\Test\FormBuilderInterface');
}
}