From 88733eceea185b19d2541cbea1c00272604b21d1 Mon Sep 17 00:00:00 2001 From: Andy Postnikov Date: Tue, 14 Apr 2026 16:13:28 +0200 Subject: [PATCH] Rename abstract class to prevent PHPUnit warning on 8.2 --- tests/{CollectionTest.php => CollectionTestCase.php} | 2 +- tests/HeapTest.php | 2 +- tests/MapTest.php | 2 +- tests/PairTest.php | 2 +- tests/SeqTest.php | 2 +- tests/SetTest.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename tests/{CollectionTest.php => CollectionTestCase.php} (99%) diff --git a/tests/CollectionTest.php b/tests/CollectionTestCase.php similarity index 99% rename from tests/CollectionTest.php rename to tests/CollectionTestCase.php index 1dc1932..f4ad8a6 100644 --- a/tests/CollectionTest.php +++ b/tests/CollectionTestCase.php @@ -7,7 +7,7 @@ use function strpos; use function var_dump; -abstract class CollectionTest extends TestCase +abstract class CollectionTestCase extends TestCase { /** * Sample sizes. diff --git a/tests/HeapTest.php b/tests/HeapTest.php index 036b226..de4c71d 100644 --- a/tests/HeapTest.php +++ b/tests/HeapTest.php @@ -1,7 +1,7 @@