From eec264ab98504c2463f86ac385122e7689f3a209 Mon Sep 17 00:00:00 2001 From: flashwave Date: Fri, 4 Oct 2024 22:59:37 +0000 Subject: [PATCH] Better filename for FsConfigTest test data. --- tests/{sharpchat.cfg => FsConfigTest.cfg} | 0 tests/FsConfigTest.php | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/{sharpchat.cfg => FsConfigTest.cfg} (100%) diff --git a/tests/sharpchat.cfg b/tests/FsConfigTest.cfg similarity index 100% rename from tests/sharpchat.cfg rename to tests/FsConfigTest.cfg diff --git a/tests/FsConfigTest.php b/tests/FsConfigTest.php index 94b3dd4..df1aa2a 100644 --- a/tests/FsConfigTest.php +++ b/tests/FsConfigTest.php @@ -86,7 +86,7 @@ final class FsConfigTest extends TestCase { } public function testGetAllValueInfos(): void { - $config = FsConfig::fromFile(__DIR__ . '/sharpchat.cfg'); + $config = FsConfig::fromFile(__DIR__ . '/FsConfigTest.cfg'); $all = $config->getAllValueInfos(); $expected = [ @@ -132,7 +132,7 @@ final class FsConfigTest extends TestCase { } public function testGetValues(): void { - $config = FsConfig::fromFile(__DIR__ . '/sharpchat.cfg'); + $config = FsConfig::fromFile(__DIR__ . '/FsConfigTest.cfg'); $this->assertNull($config->getValueInfo('doesnotexist'));