浏览代码

[Templating] fixed bug in the test suite

Fabien Potencier 15 年之前
父节点
当前提交
44c4c58268
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      tests/unit/Symfony/Components/Templating/Loader/FilesystemLoaderTest.php

+ 1 - 2
tests/unit/Symfony/Components/Templating/Loader/FilesystemLoaderTest.php

@@ -18,7 +18,7 @@ use Symfony\Components\Templating\Storage\FileStorage;
 
 $fixturesPath = realpath(__DIR__.'/../../../../../fixtures/Symfony/Components/Templating/');
 
-$t = new LimeTest(15);
+$t = new LimeTest(14);
 
 class ProjectTemplateLoader extends FilesystemLoader
 {
@@ -70,5 +70,4 @@ $t->ok($debugger->hasMessage('Failed loading template'), '->load() logs a "Faile
 $loader = new ProjectTemplateLoader(array($fixturesPath.'/null/%name%', $pathPattern));
 $loader->setDebugger($debugger = new ProjectTemplateDebugger());
 $loader->load('foo');
-$t->ok($debugger->hasMessage('Failed loading template'), '->load() logs a "Failed loading template" message if the template is not found');
 $t->ok($debugger->hasMessage('Loaded template file'), '->load() logs a "Loaded template file" message if the template is found');