From: Floran Brutel Date: Sat, 31 Mar 2018 10:55:27 +0000 (+0200) Subject: Fix CS in UtilsTest.php X-Git-Tag: 2.3.3~13^2 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=80d4260a8e481861ef13de661e8770b86be6ad78 Fix CS in UtilsTest.php --- diff --git a/tests/Wallabag/CoreBundle/Tools/UtilsTest.php b/tests/Wallabag/CoreBundle/Tools/UtilsTest.php index 347589dc..952d076d 100644 --- a/tests/Wallabag/CoreBundle/Tools/UtilsTest.php +++ b/tests/Wallabag/CoreBundle/Tools/UtilsTest.php @@ -13,7 +13,7 @@ class UtilsTest extends TestCase */ public function testCorrectWordsCountForDifferentLanguages($text, $expectedCount) { - static::assertEquals((float) $expectedCount, Utils::getReadingTime($text)); + static::assertSame((float) $expectedCount, Utils::getReadingTime($text)); } public function examples()