diff --git a/src/common/HTTPRequest.ts b/src/common/HTTPRequest.ts index 0d451594e8def..9f9db45f7d413 100644 --- a/src/common/HTTPRequest.ts +++ b/src/common/HTTPRequest.ts @@ -216,7 +216,7 @@ export class HTTPRequest { */ private interceptResolution(): [InterceptResolutionStrategy, number?] { if (!this._allowInterception) return ['disabled']; - if (this._interceptionHandled) return ['alreay-handled']; + if (this._interceptionHandled) return ['already-handled']; return [this._currentStrategy, this._currentPriority]; }