diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2026-01-13 12:43:23 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2026-01-13 12:43:23 +0000 |
| commit | c90dad7e7a7be34733462ffae2da48dc254a036c (patch) | |
| tree | d84e4c80e6c6fdea076d59ebe1552345a8fe2132 /tests/TestCase.php | |
| parent | 4ac9f75c15214a226b21ec90625c1f3641400d93 (diff) | |
| download | webtrees-c90dad7e7a7be34733462ffae2da48dc254a036c.tar.gz webtrees-c90dad7e7a7be34733462ffae2da48dc254a036c.tar.bz2 webtrees-c90dad7e7a7be34733462ffae2da48dc254a036c.zip | |
Remove PHPSTAN strict checks. 2.1 is moving out of support, and these issues won't be fixed
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(); |
