8000 skip a test that does not work with ICU 71.1 · symfony/symfony@f839947 · GitHub
[go: up one dir, main page]

Skip to content

Commit f839947

Browse files
committed
skip a test that does not work with ICU 71.1
1 parent ce95b87 commit f839947

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTypeTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use Symfony\Component\Form\ChoiceList\View\ChoiceView;
1515
use Symfony\Component\Form\FormError;
1616
use Symfony\Component\Form\FormInterface;
17+
use Symfony\Component\Intl\Intl;
1718
use Symfony\Component\Intl\Util\IntlTestHelper;
1819
use Symfony\Component\OptionsResolver\Exception\InvalidOptionsException;
1920

@@ -90,6 +91,10 @@ public function testSubmitFromSingleTextDateTime()
9091
// we test against "de_DE", so we need the full implementation
9192
IntlTestHelper::requireFullIntl($this, false);
9293

94+
if (Intl::getIcuVersion() === '71.1') {
95+
$this->markTestSkipped('Skipping test due to a bug in ICU 71.1.');
96+
}
97+
9398
\Locale::setDefault('de_DE');
9499

95100
$form = $this->factory->create(static::TESTED_TYPE, null, [

0 commit comments

Comments
 (0)
0