Skip to content

Commit 1d6573c

Browse files
Merge branch '7.3' into 7.4
* 7.3: [Scheduler] Fix `scheduler.task` tag arguments optionality use false instead of null to hide the currency symbol [FrameworkBundle] Fix block type from `OK` to `ERROR` when local vault is disabled in `SecretsRemoveCommand` Fix wrong boolean values minor #61328 [FrameworkBundle] Decouple ControllerResolverTest from HttpKernel (nicolas-grekas) [Messenger] Fix NoAutoAckStamp handling in Worker::flush()
2 parents 4b7566f + ffb94a5 commit 1d6573c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/Constraints/CountryValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public function testInvalidAlpha3CountryNamed()
158158
public function testValidateUsingCountrySpecificLocale()
159159
{
160160
// in order to test with "en_GB"
161-
IntlTestHelper::requireFullIntl($this, false);
161+
IntlTestHelper::requireFullIntl($this);
162162

163163
\Locale::setDefault('en_GB');
164164

Tests/Constraints/CurrencyValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function testValidCurrencies($currency)
7272
#[DataProvider('getValidCurrencies')]
7373
public function testValidCurrenciesWithCountrySpecificLocale($currency)
7474
{
75-
IntlTestHelper::requireFullIntl($this, false);
75+
IntlTestHelper::requireFullIntl($this);
7676

7777
\Locale::setDefault('en_GB');
7878

Tests/Constraints/LanguageValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public function testInvalidAlpha3LanguageNamed()
156156

157157
public function testValidateUsingCountrySpecificLocale()
158158
{
159-
IntlTestHelper::requireFullIntl($this, false);
159+
IntlTestHelper::requireFullIntl($this);
160160

161161
\Locale::setDefault('fr_FR');
162162
$existingLanguage = 'en';

0 commit comments

Comments
 (0)