aboutsummaryrefslogtreecommitdiff
path: root/tests/app/Utils/dotNotationUtilTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Utils/dotNotationUtilTest.php')
-rw-r--r--tests/app/Utils/dotNotationUtilTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Utils/dotNotationUtilTest.php b/tests/app/Utils/dotNotationUtilTest.php
index e49220d30..20d4726af 100644
--- a/tests/app/Utils/dotNotationUtilTest.php
+++ b/tests/app/Utils/dotNotationUtilTest.php
@@ -41,6 +41,6 @@ class dotNotationUtilTest extends PHPUnit\Framework\TestCase {
#[DataProvider('provideJsonDots')]
public static function testJsonDots(array $array, string $key, string $expected): void {
$value = FreshRSS_dotNotation_Util::get($array, $key);
- self::assertEquals($expected, $value);
+ self::assertSame($expected, $value);
}
}