Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79ac8770 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 4834 into donut

* changes:
  Fix a bug where wrong variable was used for comparison.
parents b92f7040 595fbd6e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ def CompareResults(ref_dir, results_dir):
    result_file_name = "layout_tests_" + f + ".txt"
    DiffResults(f, os.path.join(results_dir, result_file_name),
                os.path.join(ref_dir, result_file_name), diff_result,
                False, files != "passed")
                False, f != "passed")
  logging.info("Detailed diffs are in " + diff_result)

def main(options, args):