Skip to content

Commit

Permalink
fixes CS
Browse files Browse the repository at this point in the history
  • Loading branch information
nojimage committed Feb 9, 2024
1 parent d5744fd commit c2db242
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
declare(strict_types=1);

use Cake\Cache\Cache;
use Cake\TestSuite\Fixture\SchemaLoader;
use Migrations\TestSuite\Migrator;

/**
* Test suite bootstrap for RememberMe.
Expand Down Expand Up @@ -30,10 +32,10 @@
require $root . '/vendor/cakephp/cakephp/tests/bootstrap.php';

// setup migration
$schemaLoader = new \Cake\TestSuite\Fixture\SchemaLoader();
$schemaLoader = new SchemaLoader();
$schemaLoader->loadInternalFile($here . '/test_app/config/schema.php');

$migrator = new \Migrations\TestSuite\Migrator();
$migrator = new Migrator();
$migrator->run([
'plugin' => 'Elastic/ActivityLogger',
'skip' => ['authors', 'articles', 'comments', 'users'],
Expand Down

0 comments on commit c2db242

Please sign in to comment.