From cbcb9d2b459e686c2b69bc8b390bdb4e9027918d Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Fri, 31 Jan 2025 09:14:32 +0100 Subject: [PATCH] Core: Update to latest Lunr.Halo --- src/Lunr/Core/Tests/IniGetIntegerForShorthandBytesTest.php | 2 +- src/Lunr/Core/Tests/IniMainTest.php | 4 ++-- src/Lunr/Core/Tests/IniSectionTest.php | 4 ++-- src/Lunr/Core/Tests/{IniTest.php => IniTestCase.php} | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) rename src/Lunr/Core/Tests/{IniTest.php => IniTestCase.php} (92%) diff --git a/src/Lunr/Core/Tests/IniGetIntegerForShorthandBytesTest.php b/src/Lunr/Core/Tests/IniGetIntegerForShorthandBytesTest.php index 959c4567..df9ee259 100644 --- a/src/Lunr/Core/Tests/IniGetIntegerForShorthandBytesTest.php +++ b/src/Lunr/Core/Tests/IniGetIntegerForShorthandBytesTest.php @@ -15,7 +15,7 @@ * * @covers Lunr\Core\Ini */ -class IniGetIntegerForShorthandBytesTest extends IniTest +class IniGetIntegerForShorthandBytesTest extends IniTestCase { /** diff --git a/src/Lunr/Core/Tests/IniMainTest.php b/src/Lunr/Core/Tests/IniMainTest.php index 67a2eea8..a5fbddb3 100644 --- a/src/Lunr/Core/Tests/IniMainTest.php +++ b/src/Lunr/Core/Tests/IniMainTest.php @@ -16,7 +16,7 @@ * * @covers Lunr\Core\Ini */ -class IniMainTest extends IniTest +class IniMainTest extends IniTestCase { /** @@ -34,7 +34,7 @@ public function setUp(): void */ public function testSectionIsNull(): void { - $this->assertNull($this->get_reflection_property_value('section')); + $this->assertNull($this->getReflectionPropertyValue('section')); } /** diff --git a/src/Lunr/Core/Tests/IniSectionTest.php b/src/Lunr/Core/Tests/IniSectionTest.php index 4459da7f..4b06b21d 100644 --- a/src/Lunr/Core/Tests/IniSectionTest.php +++ b/src/Lunr/Core/Tests/IniSectionTest.php @@ -16,7 +16,7 @@ * * @covers Lunr\Core\Ini */ -class IniSectionTest extends IniTest +class IniSectionTest extends IniTestCase { /** @@ -34,7 +34,7 @@ public function setUp(): void */ public function testSectionIsNotNull(): void { - $this->assertEquals('date', $this->get_reflection_property_value('section')); + $this->assertEquals('date', $this->getReflectionPropertyValue('section')); } /** diff --git a/src/Lunr/Core/Tests/IniTest.php b/src/Lunr/Core/Tests/IniTestCase.php similarity index 92% rename from src/Lunr/Core/Tests/IniTest.php rename to src/Lunr/Core/Tests/IniTestCase.php index d381eb22..a2ca3f68 100644 --- a/src/Lunr/Core/Tests/IniTest.php +++ b/src/Lunr/Core/Tests/IniTestCase.php @@ -1,7 +1,7 @@