We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17fbb7e commit f2f1e90Copy full SHA for f2f1e90
dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/UserExpirationTest.php
@@ -51,6 +51,9 @@ public function testUserExpirationSave(string $locale): void
51
\IntlDateFormatter::MEDIUM,
52
\IntlDateFormatter::MEDIUM
53
);
54
+ if (version_compare(PHP_VERSION, '8.3', '>=') && $locale === 'uk_UA') {
55
+ $expireDate = str_replace(' р.', ' р.', $expireDate);
56
+ }
57
$userExpirationFactory = Bootstrap::getObjectManager()->get(UserExpirationFactory::class);
58
$userExpiration = $userExpirationFactory->create();
59
$userExpiration->setExpiresAt($expireDate);
0 commit comments