[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 f7a01d8fa8
commit 0f89610e87

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());