Update composer suggestions

This commit is contained in:
MarkBaker 2020-10-11 12:36:47 +02:00
parent 591f7cf301
commit b53199d7db
1 changed files with 1 additions and 1 deletions

View File

@ -55,6 +55,6 @@ class LocaleFloatsTest extends TestCase
self::assertArrayHasKey(1, $matches);
$actual = $matches[1];
// From PHP8, https://wiki.php.net/rfc/locale_independent_float_to_string applies
self::assertEquals((\PHP_VERSION_ID < 80000) ? '1,1' : '1.1', $actual);
self::assertEquals('1,1', $actual);
}
}