Index: trunk/phase3/tests/phpunit/includes/api/format/ApiFormatTestBase.php |
— | — | @@ -11,9 +11,9 @@ |
12 | 12 | $module = $data[3]; |
13 | 13 | |
14 | 14 | $printer = $module->createPrinterByName( $format ); |
15 | | - $printer->setUnescapeAmps(false); |
| 15 | + $printer->setUnescapeAmps( false ); |
16 | 16 | |
17 | | - $printer->initPrinter(false); |
| 17 | + $printer->initPrinter( false ); |
18 | 18 | |
19 | 19 | ob_start(); |
20 | 20 | $printer->execute(); |
— | — | @@ -24,5 +24,8 @@ |
25 | 25 | return $out; |
26 | 26 | } |
27 | 27 | |
| 28 | + function setupUser() { |
| 29 | + /* Do not setup a user here */ |
| 30 | + } |
28 | 31 | } |
29 | 32 | |