From 80d4260a8e481861ef13de661e8770b86be6ad78 Mon Sep 17 00:00:00 2001
From: Floran Brutel <contact@floran.fr>
Date: Sat, 31 Mar 2018 12:55:27 +0200
Subject: [PATCH] Fix CS in UtilsTest.php

---
 tests/Wallabag/CoreBundle/Tools/UtilsTest.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/Wallabag/CoreBundle/Tools/UtilsTest.php b/tests/Wallabag/CoreBundle/Tools/UtilsTest.php
index 347589dc0..952d076d1 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()