]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix CS in UtilsTest.php 3619/head
authorFloran Brutel <contact@floran.fr>
Sat, 31 Mar 2018 10:55:27 +0000 (12:55 +0200)
committerFloran Brutel <contact@floran.fr>
Sat, 31 Mar 2018 10:55:27 +0000 (12:55 +0200)
tests/Wallabag/CoreBundle/Tools/UtilsTest.php

index 347589dc00b408191565be01ec8dcbbdcd470175..952d076d1b7c0f7a208fd561fb75a6d4da44ae11 100644 (file)
@@ -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()