From 6c393c1c696ddd56d5ecbeec0e6387adc7d18c31 Mon Sep 17 00:00:00 2001 From: Karoly Negyesi Date: Fri, 20 Sep 2013 06:31:06 +0200 Subject: [PATCH] use the more generic removeDirectory --- tests/Composer/Test/Plugin/PluginInstallerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Composer/Test/Plugin/PluginInstallerTest.php b/tests/Composer/Test/Plugin/PluginInstallerTest.php index 4163c0f2e..79e141530 100644 --- a/tests/Composer/Test/Plugin/PluginInstallerTest.php +++ b/tests/Composer/Test/Plugin/PluginInstallerTest.php @@ -91,7 +91,7 @@ class PluginInstallerTest extends \PHPUnit_Framework_TestCase protected function tearDown() { $filesystem = new Filesystem(); - $filesystem->removeDirectoryPhp($this->directory); + $filesystem->removeDirectory($this->directory); } public function testInstallNewPlugin()