From bf86ceaa32de70bfa3c82908ed59ca6408c28411 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2004 07:05:37 +0000 Subject: [PATCH] Change name of output files to make the diff output a bit clearer --- maintenance/parserTests.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance/parserTests.php b/maintenance/parserTests.php index 6d3de6cd27..941f622933 100644 --- a/maintenance/parserTests.php +++ b/maintenance/parserTests.php @@ -190,10 +190,10 @@ class ParserTest { function quickDiff( $input, $output ) { $prefix = "/tmp/mwParser-" . mt_rand(); - $infile = "$prefix-in"; + $infile = "$prefix-expected"; $this->dumpToFile( $input, $infile ); - $outfile = "$prefix-out"; + $outfile = "$prefix-actual"; $this->dumpToFile( $output, $outfile ); $diff = `diff -u $infile $outfile`; -- 2.20.1