From bf7441eea4f3596cc6a87de68db6d433209af64a Mon Sep 17 00:00:00 2001 From: Klaus Silveira Date: Thu, 16 Aug 2012 02:09:47 -0300 Subject: [PATCH] Fixed bad test --- tests/RepositoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RepositoryTest.php b/tests/RepositoryTest.php index ca05215..fa12a1f 100644 --- a/tests/RepositoryTest.php +++ b/tests/RepositoryTest.php @@ -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();