Skip to content

Commit

Permalink
Fix tests namespace (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarkowicz authored and greg0ire committed Aug 18, 2016
1 parent 43e1ce5 commit 761aa9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Tests/Checker/TranslatableCheckerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/

namespace Sonata\AdminBundle\Tests\Checker;
namespace Sonata\TranslationBundle\Tests\Checker;

use Sonata\TranslationBundle\Checker\TranslatableChecker;
use Sonata\TranslationBundle\Model\AbstractTranslatable;
Expand Down Expand Up @@ -64,7 +64,7 @@ public function testIsTranslatableOnModel()
$this->assertFalse($translatableChecker->isTranslatable($object));

$translatableChecker->setSupportedModels(array(
'Sonata\AdminBundle\Tests\Checker\ModelCustomTranslatable',
'Sonata\TranslationBundle\Tests\Checker\ModelCustomTranslatable',
));

$this->assertTrue($translatableChecker->isTranslatable($object));
Expand Down
2 changes: 1 addition & 1 deletion Tests/Model/GedmoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/

namespace Sonata\AdminBundle\Tests\Model;
namespace Sonata\TranslationBundle\Tests\Model;

use Sonata\TranslationBundle\Model\Gedmo\AbstractPersonalTranslatable;
use Sonata\TranslationBundle\Model\Gedmo\AbstractPersonalTranslation;
Expand Down
2 changes: 1 addition & 1 deletion Tests/Resources/XliffTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/

namespace Sonata\AdminBundle\Tests\Resources;
namespace Sonata\TranslationBundle\Tests\Resources;

use Sonata\CoreBundle\Test\XliffValidatorTestCase;

Expand Down
2 changes: 1 addition & 1 deletion Tests/Traits/GedmoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/

namespace Sonata\AdminBundle\Tests\Traits;
namespace Sonata\TranslationBundle\Tests\Traits;

use Doctrine\Common\Collections\ArrayCollection;
use Sonata\TranslationBundle\Model\Gedmo\AbstractPersonalTranslation;
Expand Down

0 comments on commit 761aa9a

Please sign in to comment.