From: Sandro Santilli Date: Sat, 25 May 2013 16:47:19 +0000 (+0000) Subject: Fix swapped obtained/expected in regression failure report X-Git-Tag: 2.1.0beta3~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f179fe5317f995ee2d59bc27a4c3e2c38d6c3526;p=postgis Fix swapped obtained/expected in regression failure report git-svn-id: http://svn.osgeo.org/postgis/trunk@11497 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/run_test.pl b/regress/run_test.pl index 38c487782..2d4186a66 100755 --- a/regress/run_test.pl +++ b/regress/run_test.pl @@ -1191,7 +1191,7 @@ sub uninstall_spatial sub diff { - my ($obtained_file, $expected_file) = @_; + my ($expected_file, $obtained_file) = @_; my $diffstr = ''; open(OBT, $obtained_file) || die "Cannot open $obtained_file\n";