Fix namespaces in unit tests (#171)

This commit is contained in:
Ricardo Pérez 2019-01-27 21:30:35 +01:00 committed by Alexander Makarov
parent 72af82e3e1
commit 069ec1f6d0
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace tests\models;
namespace tests\unit\models;
class ContactFormTest extends \Codeception\Test\Unit
{

View File

@ -1,6 +1,6 @@
<?php
namespace tests\models;
namespace tests\unit\models;
use app\models\LoginForm;

View File

@ -1,6 +1,6 @@
<?php
namespace tests\models;
namespace tests\unit\models;
use app\models\User;