14
14
use Symfony \Component \Form \ChoiceList \View \ChoiceView ;
15
15
use Symfony \Component \Form \FormError ;
16
16
use Symfony \Component \Form \FormInterface ;
17
+ use Symfony \Component \Intl \Intl ;
17
18
use Symfony \Component \Intl \Util \IntlTestHelper ;
18
19
use Symfony \Component \OptionsResolver \Exception \InvalidOptionsException ;
19
20
@@ -90,6 +91,10 @@ public function testSubmitFromSingleTextDateTime()
90
91
// we test against "de_DE", so we need the full implementation
91
92
IntlTestHelper::requireFullIntl ($ this , false );
92
93
94
+ if ('71.1 ' === Intl::getIcuVersion ()) {
95
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
96
+ }
97
+
93
98
\Locale::setDefault ('de_DE ' );
94
99
95
100
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -112,6 +117,10 @@ public function testSubmitFromSingleTextDateTimeImmutable()
112
117
// we test against "de_DE", so we need the full implementation
113
118
IntlTestHelper::requireFullIntl ($ this , false );
114
119
120
+ if ('71.1 ' === Intl::getIcuVersion ()) {
121
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
122
+ }
123
+
115
124
\Locale::setDefault ('de_DE ' );
116
125
117
126
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -135,6 +144,10 @@ public function testSubmitFromSingleTextString()
135
144
// we test against "de_DE", so we need the full implementation
136
145
IntlTestHelper::requireFullIntl ($ this , false );
137
146
147
+ if ('71.1 ' === Intl::getIcuVersion ()) {
148
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
149
+ }
150
+
138
151
\Locale::setDefault ('de_DE ' );
139
152
140
153
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -157,6 +170,10 @@ public function testSubmitFromSingleTextTimestamp()
157
170
// we test against "de_DE", so we need the full implementation
158
171
IntlTestHelper::requireFullIntl ($ this , false );
159
172
173
+ if ('71.1 ' === Intl::getIcuVersion ()) {
174
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
175
+ }
176
+
160
177
\Locale::setDefault ('de_DE ' );
161
178
162
179
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
@@ -181,6 +198,10 @@ public function testSubmitFromSingleTextRaw()
181
198
// we test against "de_DE", so we need the full implementation
182
199
IntlTestHelper::requireFullIntl ($ this , false );
183
200
201
+ if ('71.1 ' === Intl::getIcuVersion ()) {
202
+ $ this ->markTestSkipped ('Skipping test due to a bug in ICU 71.1. ' );
203
+ }
204
+
184
205
\Locale::setDefault ('de_DE ' );
185
206
186
207
$ form = $ this ->factory ->create (static ::TESTED_TYPE , null , [
0 commit comments