Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Jan 27, 2020
1 parent ad5656e commit 247215b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/postwomanTesting.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class Expectation {
const code = parseInt(this.expectValue);
if (Number.isNaN(code)) {
return this._fail(
`Expecteded ${statusCode}-level status but could not parse value ${this.expectValue}`
`Expected ${statusCode}-level status but could not parse value ${this.expectValue}`
);
}
return this._satisfies(code >= statusCode && code < statusCode + 100)
Expand Down

0 comments on commit 247215b

Please sign in to comment.