1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[feature/template-engine] Delete obsolete comments pertaining to notices.

PHPBB3-9726
This commit is contained in:
Oleg Pudeyev 2011-05-11 21:13:37 -04:00
parent 345852d240
commit ac9a910c64

View File

@ -39,8 +39,6 @@ class phpbb_template_template_test extends phpbb_test_case
protected function setUp()
{
// $this->markTestIncomplete("template::display raises notices.");
// Test the engine can be used
$this->setup_engine();
@ -422,15 +420,10 @@ class phpbb_template_template_test extends phpbb_test_case
$this->template->destroy_block_vars($block);
}
//$error_level = error_reporting();
//error_reporting($error_level & ~E_NOTICE);
$this->assertEquals($expected, self::trim_template_result($this->template->assign_display('test')), "Testing assign_display($file)");
$this->template->assign_display('test', 'VARIABLE', false);
//error_reporting($error_level);
$this->assertEquals($expected, $this->display('container'), "Testing assign_display($file)");
}