From a55eb11f5b975fa7d6d89cc167b92ddf310e5c60 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Mon, 27 Jan 2020 18:19:27 +0530 Subject: [PATCH] fix: status code info --- functions/postwomanTesting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/postwomanTesting.js b/functions/postwomanTesting.js index a7ebf941b..2b2b2ed1b 100644 --- a/functions/postwomanTesting.js +++ b/functions/postwomanTesting.js @@ -161,7 +161,7 @@ class Expectation { let code = parseInt(this.expectValue); if (Number.isNaN(code)) { return this._fail( - `Expected 200-level status but could not parse value ${this.expectValue}` + `Expected 500-level status but could not parse value ${this.expectValue}` ); } return this._satisfies(code >= 500 && code < 600)