From 17f53d1aeebad42b121a2b25a664f940e78a02f8 Mon Sep 17 00:00:00 2001 From: spipu Date: Sat, 28 Jan 2023 01:10:20 +0100 Subject: [PATCH] update changelog --- CHANGELOG.md | 1 + phpunit.xml | 13 ------------- src/Tests/Html2PdfTest.php | 2 ++ 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e0801b0..cb8072d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. ## [5.2.6](https://github.com/spipu/html2pdf/compare/v5.2.5...v5.2.6) - 2023-01-28 * add support of PHP 8.1 and PHP 8.2 + * add phpunit 9 compatibility - thanks to @jausions * remove useless files ## [5.2.5](https://github.com/spipu/html2pdf/compare/v5.2.4...v5.2.5) - 2022-04-04 diff --git a/phpunit.xml b/phpunit.xml index cfcda6d3..05c421b9 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -12,17 +12,4 @@ src/Tests - - - src - - src/Tests - src/config - - - - diff --git a/src/Tests/Html2PdfTest.php b/src/Tests/Html2PdfTest.php index ab2c6dc7..5ff4ceee 100644 --- a/src/Tests/Html2PdfTest.php +++ b/src/Tests/Html2PdfTest.php @@ -21,6 +21,8 @@ public function testExtensionTag() $object->addExtension($extension); $object->writeHTML('
Hello
'); + + $this->assertTrue(true); } public function testSecurityGood()