Fix CS in UtilsTest.php

This commit is contained in:
Floran Brutel 2018-03-31 12:55:27 +02:00
parent 739a4024fa
commit 80d4260a8e
No known key found for this signature in database
GPG key ID: 0A61C46D590F5999

View 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()