Fix test reporting git merge-base (#65787)
authorZhuojie Zhou <zhouzhuojie@users.noreply.github.com>
Tue, 28 Sep 2021 22:48:32 +0000 (15:48 -0700)
committerGitHub <noreply@github.com>
Tue, 28 Sep 2021 22:48:32 +0000 (15:48 -0700)
tools/stats/print_test_stats.py

index 8c1f797..7c21491 100755 (executable)
@@ -108,7 +108,7 @@ def plural(n: int) -> str:
 
 def get_base_commit(sha1: str) -> str:
     return subprocess.check_output(
-        ["git", "merge-base", sha1, "origin/master"],
+        ["git", "merge-base", sha1, "origin/release/1.10"],
         encoding="ascii",
     ).strip()