From b4981ccc3c52964f6ec77bc287727344eaf44723 Mon Sep 17 00:00:00 2001 From: Andreas Lind Date: Tue, 21 Apr 2015 08:59:41 +0200 Subject: [PATCH] Fixed copy/paste error in unchunked body error message. --- lib/unexpectedMessy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unexpectedMessy.js b/lib/unexpectedMessy.js index 6d0c38c..ca57cb5 100644 --- a/lib/unexpectedMessy.js +++ b/lib/unexpectedMessy.js @@ -595,7 +595,7 @@ module.exports = { if (promiseByKey.unchunkedBody && promiseByKey.unchunkedBody.isRejected()) { var unchunkedBodyError = promiseByKey.unchunkedBody.reason(); output.nl().annotationBlock(function () { - this.error('should have raw body satisfying').sp().append(expect.inspect(value.unchunkedBody)); + this.error('should have unchunked body satisfying').sp().append(expect.inspect(value.unchunkedBody)); var d = unchunkedBodyError.createDiff && unchunkedBodyError.createDiff(output.clone(), diff, inspect, equal); if (d && d.diff) { this.nl().append(d.diff);