From 94a8e8809ce1a52393c247cd6a853a452cc2ad67 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 21 Dec 2011 16:46:23 +0100 Subject: [PATCH] Fix travis builds --- tests/Composer/Test/Installer/LibraryInstallerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Composer/Test/Installer/LibraryInstallerTest.php b/tests/Composer/Test/Installer/LibraryInstallerTest.php index d8713aa38..b8134763a 100644 --- a/tests/Composer/Test/Installer/LibraryInstallerTest.php +++ b/tests/Composer/Test/Installer/LibraryInstallerTest.php @@ -28,13 +28,13 @@ class LibraryInstallerTest extends \PHPUnit_Framework_TestCase { $fs = new Filesystem; - $this->vendorDir = realpath(sys_get_temp_dir().DIRECTORY_SEPARATOR.'composer-test-vendor'); + $this->vendorDir = realpath(sys_get_temp_dir()).DIRECTORY_SEPARATOR.'composer-test-vendor'; if (is_dir($this->vendorDir)) { $fs->removeDirectory($this->vendorDir); } mkdir($this->vendorDir); - $this->binDir = realpath(sys_get_temp_dir().DIRECTORY_SEPARATOR.'composer-test-bin'); + $this->binDir = realpath(sys_get_temp_dir()).DIRECTORY_SEPARATOR.'composer-test-bin'; if (is_dir($this->binDir)) { $fs->removeDirectory($this->binDir); }