From f816ad084153ac043882ae74eaeffae627d3a9e1 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Mon, 27 Jan 2020 22:49:12 +0530 Subject: [PATCH] fix: typo --- functions/postwomanTesting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/postwomanTesting.js b/functions/postwomanTesting.js index 2b2b2ed1b..1d42c03ed 100644 --- a/functions/postwomanTesting.js +++ b/functions/postwomanTesting.js @@ -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)