Skip to content

Commit

Permalink
- fix test when part of the path is a symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Aug 25, 2009
1 parent 3db4fe3 commit 4c85f48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/standard/tests/file/realpath_basic2.phpt
Expand Up @@ -3,9 +3,9 @@ realpath() with relative directory
--FILE--
<?php

var_dump(realpath('.') == getcwd());
var_dump(realpath('.') == realpath(getcwd()));
chdir('..');
var_dump(realpath('.') == getcwd());
var_dump(realpath('.') == realpath(getcwd()));

?>
--EXPECT--
Expand Down

0 comments on commit 4c85f48

Please sign in to comment.