diff options
author | Floran Brutel <contact@floran.fr> | 2018-03-31 12:55:27 +0200 |
---|---|---|
committer | Floran Brutel <contact@floran.fr> | 2018-03-31 12:55:27 +0200 |
commit | 80d4260a8e481861ef13de661e8770b86be6ad78 (patch) | |
tree | 0085e28cf7bc1103d33ade2de4c13def4f871da7 | |
parent | 739a4024fa64ba5412078e01c8ae84628f865f26 (diff) | |
download | wallabag-80d4260a8e481861ef13de661e8770b86be6ad78.tar.gz wallabag-80d4260a8e481861ef13de661e8770b86be6ad78.tar.zst wallabag-80d4260a8e481861ef13de661e8770b86be6ad78.zip |
Fix CS in UtilsTest.php
-rw-r--r-- | tests/Wallabag/CoreBundle/Tools/UtilsTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
13 | */ | 13 | */ |
14 | public function testCorrectWordsCountForDifferentLanguages($text, $expectedCount) | 14 | public function testCorrectWordsCountForDifferentLanguages($text, $expectedCount) |
15 | { | 15 | { |
16 | static::assertEquals((float) $expectedCount, Utils::getReadingTime($text)); | 16 | static::assertSame((float) $expectedCount, Utils::getReadingTime($text)); |
17 | } | 17 | } |
18 | 18 | ||
19 | public function examples() | 19 | public function examples() |