Commit 70d8f604 authored by Steve Müller's avatar Steve Müller

fix SQL Azure functional tests

parent 8105f909
<?php <?php
namespace Doctrine\Tests\DBAL\Sharding\SQLAzure; namespace Doctrine\Tests\DBAL\Sharding\SQLAzure;
use Doctrine\DBAL\Sharding\SQLAzure\SQLAzureSchemaSynchronizer; use Doctrine\DBAL\Sharding\SQLAzure\SQLAzureFederationsSynchronizer;
class FunctionalTest extends AbstractTestCase class FunctionalTest extends AbstractTestCase
{ {
...@@ -9,7 +9,7 @@ class FunctionalTest extends AbstractTestCase ...@@ -9,7 +9,7 @@ class FunctionalTest extends AbstractTestCase
{ {
$schema = $this->createShopSchema(); $schema = $this->createShopSchema();
$synchronizer = new SQLAzureSchemaSynchronizer($this->conn, $this->sm); $synchronizer = new SQLAzureFederationsSynchronizer($this->conn, $this->sm);
$synchronizer->dropAllSchema(); $synchronizer->dropAllSchema();
$synchronizer->createSchema($schema); $synchronizer->createSchema($schema);
......
<?php <?php
namespace Doctrine\Tests\DBAL\Sharding\SQLAzure; namespace Doctrine\Tests\DBAL\Sharding\SQLAzure;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Sharding\SQLAzure\SQLAzureFederationsSynchronizer; use Doctrine\DBAL\Sharding\SQLAzure\SQLAzureFederationsSynchronizer;
class SQLAzureFederationsSynchronizerTest extends AbstractTestCase class SQLAzureFederationsSynchronizerTest extends AbstractTestCase
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment