aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Tools/UtilsTest.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2018-04-01 11:12:32 +0200
committerGitHub <noreply@github.com>2018-04-01 11:12:32 +0200
commit3b46d0f947958e05c55bb10a817e94a860cda6ef (patch)
tree0085e28cf7bc1103d33ade2de4c13def4f871da7 /tests/Wallabag/CoreBundle/Tools/UtilsTest.php
parent727880c950d485293e480b5b835a0490be4f0ce7 (diff)
parent80d4260a8e481861ef13de661e8770b86be6ad78 (diff)
downloadwallabag-3b46d0f947958e05c55bb10a817e94a860cda6ef.tar.gz
wallabag-3b46d0f947958e05c55bb10a817e94a860cda6ef.tar.zst
wallabag-3b46d0f947958e05c55bb10a817e94a860cda6ef.zip
Merge pull request #3619 from notFloran/fix-tests
Fix tests
Diffstat (limited to 'tests/Wallabag/CoreBundle/Tools/UtilsTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Tools/UtilsTest.php2
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()