Index: trunk/phase3/tests/phpunit/includes/GlobalTest.php |
— | — | @@ -492,10 +492,11 @@ |
493 | 493 | |
494 | 494 | function testDebugFunctionTest() { |
495 | 495 | |
496 | | - global $wgDebugLogFile, $wgOut, $wgShowDebug; |
| 496 | + global $wgDebugLogFile, $wgOut, $wgShowDebug, $wgDebugTimestamps; |
497 | 497 | |
498 | 498 | $old_log_file = $wgDebugLogFile; |
499 | 499 | $wgDebugLogFile = tempnam( wfTempDir(), 'mw-' ); |
| 500 | + $wgDebugTimestamps = false; # FIXME: this setting should be tested |
500 | 501 | |
501 | 502 | |
502 | 503 | |