You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 2.8:
[ci] Testing with UTC hides bugs
[DI] Fix error when trying to resolve a DefinitionDecorator
[DoctrineBridge] Fix deprecation message/documentation of implementing UserProviderInterface using the entity provider
[Validator] improve and added more Indonesian translation.
* @expectedExceptionMessage Constructing service "foo" from a Symfony\Component\DependencyInjection\DefinitionDecorator is not supported at build time.
Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/IntegerToLocalizedStringTransformerTest.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ public function testTransformWithRounding($input, $output, $roundingMode)
87
87
publicfunctiontestReverseTransform()
88
88
{
89
89
// Since we test against "de_AT", we need the full implementation
90
-
IntlTestHelper::requireFullIntl($this);
90
+
IntlTestHelper::requireFullIntl($this, false);
91
91
92
92
\Locale::setDefault('de_AT');
93
93
@@ -109,7 +109,7 @@ public function testReverseTransformEmpty()
109
109
publicfunctiontestReverseTransformWithGrouping()
110
110
{
111
111
// Since we test against "de_DE", we need the full implementation
Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/NumberToLocalizedStringTransformerTest.php
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ public function provideTransformations()
42
42
publicfunctiontestTransform($from, $to, $locale)
43
43
{
44
44
// Since we test against other locales, we need the full implementation
45
-
IntlTestHelper::requireFullIntl($this);
45
+
IntlTestHelper::requireFullIntl($this, false);
46
46
47
47
\Locale::setDefault($locale);
48
48
@@ -68,7 +68,7 @@ public function provideTransformationsWithGrouping()
Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/PercentToLocalizedStringTransformerTest.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ public function testTransformWithInteger()
53
53
publicfunctiontestTransformWithScale()
54
54
{
55
55
// Since we test against "de_AT", we need the full implementation
56
-
IntlTestHelper::requireFullIntl($this);
56
+
IntlTestHelper::requireFullIntl($this, false);
57
57
58
58
\Locale::setDefault('de_AT');
59
59
@@ -92,7 +92,7 @@ public function testReverseTransformWithInteger()
92
92
publicfunctiontestReverseTransformWithScale()
93
93
{
94
94
// Since we test against "de_AT", we need the full implementation
0 commit comments