diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-03-12 18:19:04 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-03-12 18:19:04 +0000 |
commit | 7ec53b177159137ba25d9a02a6551f7a5c870827 (patch) | |
tree | fa67a3a980e1c3e63d3454b7cf25a2f8618f9118 | |
parent | 069942acdaa5ba825bc3f92c7093b5071789f1ca (diff) | |
download | rpg-7ec53b177159137ba25d9a02a6551f7a5c870827.tar.gz rpg-7ec53b177159137ba25d9a02a6551f7a5c870827.tar.bz2 |
fix io_rmdir_test::test_nopes() for symlinks in paths
-rw-r--r-- | _test/tests/inc/io_rmdir.test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/tests/inc/io_rmdir.test.php b/_test/tests/inc/io_rmdir.test.php index 3de57fa86..1c0eccb38 100644 --- a/_test/tests/inc/io_rmdir.test.php +++ b/_test/tests/inc/io_rmdir.test.php @@ -4,7 +4,7 @@ class io_rmdir_test extends DokuWikiTest { function test_nopes(){ // set up test dir - $dir = io_mktmpdir(); + $dir = realpath(io_mktmpdir()); $top = dirname($dir); $this->assertTrue($dir !== false); $this->assertTrue(is_dir($dir)); |