Skip to content

Commit

Permalink
Fix conflicting namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
richardmiller-zz committed Nov 21, 2014
1 parent 98ce9d8 commit b26b27e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BehatExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Behat\Testwork\ServiceContainer\Extension;
use Behat\Testwork\ServiceContainer\ExtensionManager;
use RMiller\ErrorExtension\ErrorExtension;
use RMiller\PhpSpecExtension\PhpSpecExtension;
use RMiller\PhpSpecExtension\PhpSpecExtension as BehatPhpSpecExtension;
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\DependencyInjection\ContainerBuilder;

Expand All @@ -16,7 +16,7 @@ class BehatExtension implements Extension
public function __construct()
{
$this->extensions = [
new PhpSpecExtension(),
new BehatPhpSpecExtension(),
new ErrorExtension(),
];
}
Expand Down

0 comments on commit b26b27e

Please sign in to comment.