Remove check for invalid return, update spec

Remove a check for an invalid return value, update the spec to
return the proper value.  Also updated the subscribe method
to fetch defaults the same as the request method.

https://github.com/nasa/openmct/pull/1544
This commit is contained in:
Pete Richards
2017-04-27 13:43:54 -07:00
parent 26e13a6cd0
commit fce8f13984
2 changed files with 5 additions and 7 deletions

View File

@@ -92,7 +92,7 @@ define(
]);
mockTelemetryAPI.getMetadata.andReturn({
valuesForHints: function () {
return [];
return [{}];
}
});