From 6c2e998e4029cb4a9d6ec433a5b9975cc5e6e8b6 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Thu, 5 Sep 2013 14:32:09 +0200 Subject: [PATCH] Add missing use statement --- tests/Composer/Test/Plugin/PluginInstallerTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Composer/Test/Plugin/PluginInstallerTest.php b/tests/Composer/Test/Plugin/PluginInstallerTest.php index 1e67eafe1..1c2a4cf31 100644 --- a/tests/Composer/Test/Plugin/PluginInstallerTest.php +++ b/tests/Composer/Test/Plugin/PluginInstallerTest.php @@ -18,6 +18,7 @@ use Composer\Installer\PluginInstaller; use Composer\Package\Loader\JsonLoader; use Composer\Package\Loader\ArrayLoader; use Composer\Package\PackageInterface; +use Composer\Plugin\PluginManager; use Composer\Autoload\AutoloadGenerator; class PluginInstallerTest extends \PHPUnit_Framework_TestCase @@ -63,7 +64,7 @@ class PluginInstallerTest extends \PHPUnit_Framework_TestCase $this->composer->setRepositoryManager($rm); $this->composer->setAutoloadGenerator($this->autoloadGenerator); - $this->pm = new \Composer\Plugin\PluginManager($this->composer, $this->io); + $this->pm = new PluginManager($this->composer, $this->io); $this->composer->setPluginManager($this->pm); $config->merge(array(