From b53199d7db45005cb681454ef780c66cf4e7502c Mon Sep 17 00:00:00 2001 From: MarkBaker Date: Sun, 11 Oct 2020 12:36:47 +0200 Subject: [PATCH] Update composer suggestions --- tests/PhpSpreadsheetTests/Writer/Xlsx/LocaleFloatsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PhpSpreadsheetTests/Writer/Xlsx/LocaleFloatsTest.php b/tests/PhpSpreadsheetTests/Writer/Xlsx/LocaleFloatsTest.php index 83defb7b..373ef37f 100644 --- a/tests/PhpSpreadsheetTests/Writer/Xlsx/LocaleFloatsTest.php +++ b/tests/PhpSpreadsheetTests/Writer/Xlsx/LocaleFloatsTest.php @@ -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); } }