From 429fbb87d7d119ce0c0aa8f3ca812719d1cfc19c Mon Sep 17 00:00:00 2001 From: Luis Cordova Date: Sun, 14 Oct 2012 04:40:54 -0500 Subject: [PATCH] turn last TRUE into true --- tests/Composer/Test/Util/FilesystemTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Composer/Test/Util/FilesystemTest.php b/tests/Composer/Test/Util/FilesystemTest.php index 84fde8dc3b60..63616323c46f 100644 --- a/tests/Composer/Test/Util/FilesystemTest.php +++ b/tests/Composer/Test/Util/FilesystemTest.php @@ -86,8 +86,8 @@ public function providePathCouples() array('/tmp/test', '/tmp', "./"), array('C:/Temp/test/sub', 'C:\Temp', "../"), array('/tmp/test/sub', '/tmp', "../"), - array('/tmp/test/sub', '/tmp', "../../", TRUE), - array('c:/tmp/test/sub', 'c:/tmp', "../../", TRUE), + array('/tmp/test/sub', '/tmp', "../../", true), + array('c:/tmp/test/sub', 'c:/tmp', "../../", true), array('/tmp', '/tmp/test', "test"), array('C:/Temp', 'C:\Temp\test', "test"), array('C:/Temp', 'c:\Temp\test', "test"),