From 5f99d79c5d1785d0552b42d797247e0f59c08874 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 25 Jun 2015 10:05:21 -0700 Subject: [PATCH] Fix type spec for 'coverage' Summary: Ref T8670. The spec for "coverage" is incorrect, it's a map of paths to coverage information. Test Plan: See next diff. Reviewers: joshuaspence, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8670 Differential Revision: https://secure.phabricator.com/D13435 --- .../harbormaster/storage/build/HarbormasterBuildUnitMessage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/harbormaster/storage/build/HarbormasterBuildUnitMessage.php b/src/applications/harbormaster/storage/build/HarbormasterBuildUnitMessage.php index 7e53cad291..125334079d 100644 --- a/src/applications/harbormaster/storage/build/HarbormasterBuildUnitMessage.php +++ b/src/applications/harbormaster/storage/build/HarbormasterBuildUnitMessage.php @@ -32,7 +32,7 @@ final class HarbormasterBuildUnitMessage 'result' => 'string', 'duration' => 'optional float', 'path' => 'optional string', - 'coverage' => 'optional string', + 'coverage' => 'optional map', ); // We're just going to ignore extra keys for now, to make it easier to