[Form] fix deprecation notice in ValidatorExtensionTest::testPropertiesInitializedWithEarlyReturn test

This commit is contained in:
Santiago San Martin
2026-03-20 19:35:20 -03:00
committed by Nicolas Grekas
parent 9694bdb91d
commit 54fc774a83

View File

@@ -78,7 +78,7 @@ class ValidatorExtensionTest extends TestCase
->getValidator();
// create with an early return condition
$extension = new ValidatorExtension($validator, false);
$extension = new ValidatorExtension($validator);
// verify the extension is functional after an early return
$this->assertInstanceOf(ValidatorTypeGuesser::class, $extension->loadTypeGuesser());