Fixed so prints expected file then actual, as expected (no pun intended)

release/4.3a0
dellaert 2014-05-25 13:02:54 -04:00
parent 26cae48338
commit 47e9016693
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ bool files_equal(const string& expected, const string& actual, bool skipheader)
bool equal = actual_contents == expected_contents;
if (!equal) {
stringstream command;
command << "diff " << actual << " " << expected << endl;
command << "diff " << expected << " " << actual << endl;
system(command.str().c_str());
}
return equal;