diff --git a/core/lib/lantern/metrics/total-blocking-time.js b/core/lib/lantern/metrics/total-blocking-time.js index 2f8778a79b22..08c25680ca15 100644 --- a/core/lib/lantern/metrics/total-blocking-time.js +++ b/core/lib/lantern/metrics/total-blocking-time.js @@ -89,12 +89,12 @@ class TotalBlockingTime extends Metric { static async compute(data, extras) { const fcpResult = extras?.fcpResult; if (!fcpResult) { - throw new Error('FCP is required to calculate the SpeedIndex metric'); + throw new Error('FCP is required to calculate the TBT metric'); } const interactiveResult = extras?.fcpResult; if (!interactiveResult) { - throw new Error('Interactive is required to calculate the SpeedIndex metric'); + throw new Error('Interactive is required to calculate the TBT metric'); } return super.compute(data, extras);