From 81208d617f76e8df194c09e6d108b2cda9a02771 Mon Sep 17 00:00:00 2001 From: Pete Richards Date: Tue, 9 May 2017 19:02:10 -0700 Subject: [PATCH] [Spec] Update specs for new calls Update specs to expect 'domain' instead of 'x'. Fixes https://github.com/nasa/openmct/issues/1546 --- .../table/test/controllers/TelemetryTableControllerSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/features/table/test/controllers/TelemetryTableControllerSpec.js b/platform/features/table/test/controllers/TelemetryTableControllerSpec.js index 1e09faf592..68bee66734 100644 --- a/platform/features/table/test/controllers/TelemetryTableControllerSpec.js +++ b/platform/features/table/test/controllers/TelemetryTableControllerSpec.js @@ -361,7 +361,7 @@ define( }; mockTelemetryAPI.commonValuesForHints.andCallFake(function (metadata, hints) { - if (_.eq(hints, ["x"])) { + if (_.eq(hints, ["domain"])) { return domainMetadata; } else if (_.eq(hints, [])) { return allMetadata;