diff --git a/src/providers/realtime-provider.js b/src/providers/realtime-provider.js index cc194ed0..2be5200e 100644 --- a/src/providers/realtime-provider.js +++ b/src/providers/realtime-provider.js @@ -222,7 +222,6 @@ export default class RealtimeProvider { if (remoteClockValues !== undefined && remoteClockValues.length > 0) { const allClockValues = []; - // We only care about the most recent clock tick message in the batch. remoteClockValues.forEach((parameterValue) => { this.#convertMessageToDatumAndReportStaleness(parameterValue, subscriptionDetails, allClockValues); }); diff --git a/tests/e2e/yamcs/realtimeData.e2e.spec.mjs b/tests/e2e/yamcs/realtimeData.e2e.spec.mjs index 20251766..d23297dc 100644 --- a/tests/e2e/yamcs/realtimeData.e2e.spec.mjs +++ b/tests/e2e/yamcs/realtimeData.e2e.spec.mjs @@ -240,7 +240,6 @@ test.describe('Realtime telemetry displays', () => { }); test('Open MCT does not drop telemetry while app is loading', async ({ page }) => { - //TODO: Upgrade this test to cycle through notifications, don't just use the last visible one. const notification = page.getByRole('alert'); const count = await notification.count();