Fixed bad test

This commit is contained in:
Klaus Silveira
2012-08-16 02:09:47 -03:00
parent d1b628049f
commit bf7441eea4

View File

@@ -347,7 +347,7 @@ class RepositoryTest extends PHPUnit_Framework_TestCase
$repository = $this->client->getRepository(RepositoryTest::PATH . '/testrepo');
$fs = new Filesystem();
$fs->touch(RepositoryTest::PATH . '/testrepo/original_file.txt');
$fs->symlink(RepositoryTest::PATH . '/testrepo/original_file.txt', RepositoryTest::PATH . '/testrepo/link.txt');
$fs->symlink(RepositoryTest::PATH . '/testrepo/original_file.txt', RepositoryTest::PATH . '/testrepo/link2.txt');
$repository->addAll();
$repository->commit("Testing symlinks");
$files = $repository->getTree('master')->output();