aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/app/Utils/dotNotationUtilTest.php (renamed from tests/app/Utils/dotpathUtilTest.php)4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/app/Utils/dotpathUtilTest.php b/tests/app/Utils/dotNotationUtilTest.php
index eb1a1d486..a04ddba4f 100644
--- a/tests/app/Utils/dotpathUtilTest.php
+++ b/tests/app/Utils/dotNotationUtilTest.php
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);
-class dotpathUtilTest extends PHPUnit\Framework\TestCase {
+class dotNotationUtilTest extends PHPUnit\Framework\TestCase {
/**
* @return Traversable<array{array<string,mixed>,string,string}>
@@ -38,7 +38,7 @@ class dotpathUtilTest extends PHPUnit\Framework\TestCase {
* @param array<string,mixed> $array
*/
public function testJsonDots(array $array, string $key, string $expected): void {
- $value = FreshRSS_dotpath_Util::get($array, $key);
+ $value = FreshRSS_dotNotation_Util::get($array, $key);
self::assertEquals($expected, $value);
}
}