Skip to content

Commit 01b11a0

Browse files
Merge branch '5.3' into 5.4
* 5.3: [Process] intersect with getenv() in case-insensitive manner to get default envs [Serializer] fix support for lazy/unset properties Fix redundant type casts [Notifier] Fix AllMySms bridge body content Revert "[DoctrineBridge] add support for the JSON type"
2 parents 4268ae4 + fea5cef commit 01b11a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/NumberFormatter/AbstractNumberFormatterTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -666,12 +666,12 @@ public function parseProvider()
666666
return [
667667
['prefix1', false, '->parse() does not parse a number with a string prefix.', 0],
668668
['prefix1', false, '->parse() does not parse a number with a string prefix.', 0, false],
669-
['1.4suffix', (float) 1.4, '->parse() parses a number with a string suffix.', 3],
670-
['1.4suffix', (float) 1.4, '->parse() parses a number with a string suffix.', 3, false],
669+
['1.4suffix', 1.4, '->parse() parses a number with a string suffix.', 3],
670+
['1.4suffix', 1.4, '->parse() parses a number with a string suffix.', 3, false],
671671
['1,234.4suffix', 1234.4, '->parse() parses a number with a string suffix.', 7],
672672
['1,234.4suffix', 1.0, '->parse() parses a number with a string suffix.', 1, false],
673-
['-.4suffix', (float) -0.4, '->parse() parses a negative dot float with suffix.', 3],
674-
['-.4suffix', (float) -0.4, '->parse() parses a negative dot float with suffix.', 3, false],
673+
['-.4suffix', -0.4, '->parse() parses a negative dot float with suffix.', 3],
674+
['-.4suffix', -0.4, '->parse() parses a negative dot float with suffix.', 3, false],
675675
[',4', false, '->parse() does not parse when invalid grouping used.', 0],
676676
[',4', false, '->parse() does not parse when invalid grouping used.', 0, false],
677677
['123,4', false, '->parse() does not parse when invalid grouping used.', 0],

0 commit comments

Comments
 (0)