diff options
Diffstat (limited to 'tests/TestCase.php')
| -rw-r--r-- | tests/TestCase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php index 1374cde7ac..939f729bde 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -217,7 +217,7 @@ class TestCase extends \PHPUnit\Framework\TestCase { self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode()); - self::assertEquals('text/html; charset=UTF-8', $response->getHeaderLine('content-type')); + self::assertSame('text/html; charset=UTF-8', $response->getHeaderLine('content-type')); $html = $response->getBody()->getContents(); |
