15
15
use Symfony \Component \Form \ChoiceList \View \ChoiceView ;
16
16
use Symfony \Component \Form \FormError ;
17
17
use Symfony \Component \Form \FormInterface ;
18
+ use Symfony \Component \Intl \Intl ;
18
19
use Symfony \Component \Intl \Util \IntlTestHelper ;
19
20
use Symfony \Component \OptionsResolver \Exception \InvalidOptionsException ;
20
21
@@ -94,6 +95,10 @@ public function testSubmitFromSingleTextDateTime()
94
95
// we test against "de_DE", so we need the full implementation
95
96
IntlTestHelper::requireFullIntl ($ this , false );
96
97
98
+ if ('71.1 ' === Intl::getIcuVersion ()) {
99
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
100
+ }
101
+
97
102
\Locale::setDefault ('de_DE ' );
98
103
99
104
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -116,6 +121,10 @@ public function testSubmitFromSingleTextDateTimeImmutable()
116
121
// we test against "de_DE", so we need the full implementation
117
122
IntlTestHelper::requireFullIntl ($ this , false );
118
123
124
+ if ('71.1 ' === Intl::getIcuVersion ()) {
125
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
126
+ }
127
+
119
128
\Locale::setDefault ('de_DE ' );
120
129
121
130
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -139,6 +148,10 @@ public function testSubmitFromSingleTextString()
139
148
// we test against "de_DE", so we need the full implementation
140
149
IntlTestHelper::requireFullIntl ($ this , false );
141
150
151
+ if ('71.1 ' === Intl::getIcuVersion ()) {
152
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
153
+ }
154
+
142
155
\Locale::setDefault ('de_DE ' );
143
156
144
157
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -161,6 +174,10 @@ public function testSubmitFromSingleTextTimestamp()
161
174
// we test against "de_DE", so we need the full implementation
162
175
IntlTestHelper::requireFullIntl ($ this , false );
163
176
177
+ if ('71.1 ' === Intl::getIcuVersion ()) {
178
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
179
+ }
180
+
164
181
\Locale::setDefault ('de_DE ' );
165
182
166
183
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -185,6 +202,10 @@ public function testSubmitFromSingleTextRaw()
185
202
// we test against "de_DE", so we need the full implementation
186
203
IntlTestHelper::requireFullIntl ($ this , false );
187
204
205
+ if ('71.1 ' === Intl::getIcuVersion ()) {
206
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
207
+ }
208
+
188
209
\Locale::setDefault ('de_DE ' );
189
210
190
211
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
0 commit comments