Skip to content

Commit

Permalink
fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Jun 12, 2016
1 parent f50a8c1 commit a42aed9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/server.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
if (isset($_SERVER['argv']) && in_array('--warmup', $_SERVER['argv'])) {
// warmup
$loader->addClassMap([
'Fusio\Impl\Fixture' => __DIR__ . '/../vendor/fusio/impl/tests/Fixture.php',
'Fusio\Impl\TestSchema' => __DIR__ . '/../vendor/fusio/impl/tests/TestSchema.php',
'Fusio\Impl\Tests\Fixture' => __DIR__ . '/../vendor/fusio/impl/tests/Fixture.php',
'Fusio\Impl\Tests\TestSchema' => __DIR__ . '/../vendor/fusio/impl/tests/TestSchema.php',
]);

// create schema
Expand All @@ -92,7 +92,7 @@

// insert fixtures
$connection = new PHPUnit_Extensions_Database_DB_DefaultDatabaseConnection($container->get('connection')->getWrappedConnection());
PHPUnit_Extensions_Database_Operation_Factory::CLEAN_INSERT()->execute($connection, Fusio\Impl\Fixture::getDataSet());
PHPUnit_Extensions_Database_Operation_Factory::CLEAN_INSERT()->execute($connection, Fusio\Impl\Tests\Fixture::getDataSet());

echo 'Warmup successful' . "\n";
} else {
Expand Down

0 comments on commit a42aed9

Please sign in to comment.