From: Tim Otten Date: Mon, 15 Feb 2021 05:12:48 +0000 (-0800) Subject: (NFC) HttpTestTrait - Fix typo X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=88b1511c5a2265b395bdbbdd449564d3701d60f5;p=civicrm-core.git (NFC) HttpTestTrait - Fix typo --- diff --git a/Civi/Test/HttpTestTrait.php b/Civi/Test/HttpTestTrait.php index 1e3fc71f6e..80be44515d 100644 --- a/Civi/Test/HttpTestTrait.php +++ b/Civi/Test/HttpTestTrait.php @@ -132,7 +132,7 @@ trait HttpTestTrait { $response = $this->resolveResponse($response); list($actualType) = explode(';', $response->getHeader('Content-Type')[0]); $fmt = $actualType === $expectType ? '' : $this->formatFailure($response); - $this->assertEquals($expectType, $actualType, "Expected content-type $expectType. Received conte-tntype $actualType.\n$fmt"); + $this->assertEquals($expectType, $actualType, "Expected content-type $expectType. Received content-type $actualType.\n$fmt"); return $this; }