blob: a824cb9b84ee018522addfa5661ea177b3bfc681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
*
* @package testing
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
function after_assert_phpbb3_7275($vars)
{
extract($vars);
decode_message($parsed_text);
$test->assertSame($original, $parsed_text);
}
|