Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
turn last TRUE into true
  • Loading branch information
cordoval committed Oct 14, 2012
1 parent 37f08f3 commit 429fbb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Composer/Test/Util/FilesystemTest.php
Expand Up @@ -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"),
Expand Down

0 comments on commit 429fbb8

Please sign in to comment.