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

Commit aba6af92 authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by The Android Open Source Project
Browse files

am 79ac8770: Merge change 4834 into donut

Merge commit '79ac8770'

* commit '79ac8770':
  Fix a bug where wrong variable was used for comparison.
parents e090f3bc 79ac8770
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):