Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Jul 18, 2024
1 parent 493cedd commit c2ae2f4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches: [ 'master' ]

name: build
name: MySQL build

jobs:
tests:
Expand Down
4 changes: 2 additions & 2 deletions tests/MySqlIntegration.suite.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\Integration
actor: IntegrationTester
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\MySqlIntegration
actor: MySqlIntegrationTester
modules:
enabled:
- Db:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

declare(strict_types=1);

namespace Vjik\Codeception\DatabasePopulator\Tests\Integration;
namespace Vjik\Codeception\DatabasePopulator\Tests\MySqlIntegration;

use Codeception\Exception\ModuleException;
use Codeception\Test\Unit;
use PDO;
use Vjik\Codeception\DatabasePopulator\Tests\IntegrationTester;
use Vjik\Codeception\DatabasePopulator\Tests\MySqlIntegrationTester;

use function dirname;

final class DatabasePopulateTest extends Unit
{
/**
* @var IntegrationTester
* @var MySqlIntegrationTester
*/
protected $tester;

Expand Down
4 changes: 2 additions & 2 deletions tests/MySqlPreload.suite.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\Preload
actor: PreloadTester
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\MySqlPreload
actor: MySqlPreloadTester
modules:
enabled:
- Db:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

declare(strict_types=1);

namespace Vjik\Codeception\DatabasePopulator\Tests\Preload;
namespace Vjik\Codeception\DatabasePopulator\Tests\MySqlPreload;

use Codeception\Test\Unit;
use Vjik\Codeception\DatabasePopulator\Tests\PreloadTester;
use Vjik\Codeception\DatabasePopulator\Tests\MySqlPreloadTester;

final class PreloadTest extends Unit
{
/**
* @var PreloadTester
* @var MySqlPreloadTester
*/
protected $tester;

Expand Down

0 comments on commit c2ae2f4

Please sign in to comment.