1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/16549] Remove exception expectation annotations

PHPBB3-16549
This commit is contained in:
rxu
2020-07-13 14:20:55 +07:00
parent fb62d22013
commit 632bcdd2da
10 changed files with 27 additions and 49 deletions

View File

@@ -1073,11 +1073,9 @@ EOT
$this->assertEquals("outer - 0 - Test assigning block vars array loop 0:outer - 1 - Test assigning block vars array loop 1:middle - 0 - 1st iterationmiddle - 1 - 2nd iterationmiddle - 2 - 3rd iteration", $this->display('test'), 'Ensuring assigning block vars array to template is working correctly');
}
/**
* @expectedException Twig_Error_Syntax
*/
public function test_define_error()
{
$this->expectException('Twig_Error_Syntax');
$this->run_template('define_error.html', array(), array(), array(), '');
}
}