mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
Make updating postponed tests work again for Facebook.
Summary: It was broken by D!352 Test Plan: Praying that it works. Reviewers: nh, epriestley, andrewjcg Reviewed By: epriestley CC: aran Differential Revision: https://secure.phabricator.com/D1453
This commit is contained in:
parent
ad36865e50
commit
7f9fb3597d
1 changed files with 2 additions and 1 deletions
|
@ -78,7 +78,8 @@ extends ConduitAPIMethod {
|
|||
// the new info.
|
||||
foreach ($unit_results as &$unit_result) {
|
||||
if ($unit_result['name'] === $name ||
|
||||
$unit_result['name'] === $file) {
|
||||
$unit_result['name'] === $file ||
|
||||
$unit_result['name'] === $diff->getSourcePath().$file) {
|
||||
$unit_result['name'] = $name;
|
||||
$unit_result['file'] = $file;
|
||||
$unit_result['result'] = $result;
|
||||
|
|
Loading…
Reference in a new issue