From 88b1511c5a2265b395bdbbdd449564d3701d60f5 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Sun, 14 Feb 2021 21:12:48 -0800 Subject: [PATCH] (NFC) HttpTestTrait - Fix typo --- Civi/Test/HttpTestTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.25.1