Skip to content

Commit

Permalink
Fix namespaces tests. (#392)
Browse files Browse the repository at this point in the history
Fix namespaces tests.
  • Loading branch information
terabytesoftw committed Nov 21, 2022
1 parent 763c33f commit debe09b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/AndConditionsTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\QueryBuilder\Conditions\AndCondition;
Expand Down
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\Exception\InvalidArgumentException;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/BetweenConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\Exception\InvalidArgumentException;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/ExistsConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\Connection\ConnectionInterface;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/HashConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\QueryBuilder\Conditions\HashCondition;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/InConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\QueryBuilder\Conditions\InCondition;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/LikeConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\Exception\InvalidArgumentException;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/NotConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\Exception\InvalidArgumentException;
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilder/Condition/SimpleConditionTest.php
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Db\Tests\QueryBuilder\Conditions;
namespace Yiisoft\Db\Tests\QueryBuilder\Condition;

use PHPUnit\Framework\TestCase;
use Yiisoft\Db\Exception\InvalidArgumentException;
Expand Down

0 comments on commit debe09b

Please sign in to comment.