From a8995b25727c72fc7a3a267bf382c5c8c8741151 Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Tue, 26 Jan 2016 11:23:08 +0100 Subject: [PATCH] use dirsep so phpunit on windows doesnt fail --- 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 720b2da40..72eeb04b1 100644 --- a/tests/Composer/Test/Installer/LibraryInstallerTest.php +++ b/tests/Composer/Test/Installer/LibraryInstallerTest.php @@ -39,10 +39,10 @@ class LibraryInstallerTest extends TestCase $this->composer->setConfig($this->config); $this->rootDir = $this->getUniqueTmpDirectory(); - $this->vendorDir = $this->rootDir.'/vendor'; + $this->vendorDir = $this->rootDir.DIRECTORY_SEPARATOR.'vendor'; $this->ensureDirectoryExistsAndClear($this->vendorDir); - $this->binDir = $this->rootDir.'/bin'; + $this->binDir = $this->rootDir.DIRECTORY_SEPARATOR.'bin'; $this->ensureDirectoryExistsAndClear($this->binDir); $this->config->merge(array(