fix: typo
This commit is contained in:
parent
a55eb11f5b
commit
f816ad0841
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ class Expectation {
|
|||
let code = parseInt(this.expectValue);
|
||||
if (Number.isNaN(code)) {
|
||||
return this._fail(
|
||||
`Expecteded 200-level status but could not parse value ${this.expectValue}`
|
||||
`Expected 200-level status but could not parse value ${this.expectValue}`
|
||||
);
|
||||
}
|
||||
return this._satisfies(code >= 200 && code < 300)
|
||||
|
|
|
|||
Loading…
Reference in a new issue