diff --git a/src/parser/__tests__/ArcanistBundleTestCase.php b/src/parser/__tests__/ArcanistBundleTestCase.php index ea29726f..8ff7339e 100644 --- a/src/parser/__tests__/ArcanistBundleTestCase.php +++ b/src/parser/__tests__/ArcanistBundleTestCase.php @@ -137,7 +137,9 @@ final class ArcanistBundleTestCase extends PhutilTestCase { throw $ex; } - execx('git commit -m %s', $subject); + $author = 'unit-test '; + + execx('git commit --author %s -m %s', $author, $subject); list($result_hash) = execx('git log -n1 --format=%s', '%T'); $result_hash = trim($result_hash);