From 1d21de63d66115d4c441979c73d4949946fb16c4 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Mon, 15 Jul 2013 18:11:36 -0400 Subject: [PATCH] Trailing slash test fix. I suppose it would help if I didn't realpath the thing I was testing for realpathness --- test/Mustache/Test/Loader/FilesystemLoaderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Mustache/Test/Loader/FilesystemLoaderTest.php b/test/Mustache/Test/Loader/FilesystemLoaderTest.php index 66027f0..3c7b2f4 100644 --- a/test/Mustache/Test/Loader/FilesystemLoaderTest.php +++ b/test/Mustache/Test/Loader/FilesystemLoaderTest.php @@ -24,7 +24,7 @@ class Mustache_Test_Loader_FilesystemLoaderTest extends PHPUnit_Framework_TestCa public function testTrailingSlashes() { - $baseDir = realpath(dirname(__FILE__).'/../../../fixtures/templates/'); + $baseDir = dirname(__FILE__).'/../../../fixtures/templates/'; $loader = new Mustache_Loader_FilesystemLoader($baseDir); $this->assertEquals('one contents', $loader->load('one')); }