Skip to content

Commit 5d0f633

Browse files
Merge branch '5.1' into 5.2
* 5.1: Use import instead of FQCN
2 parents e6d02d7 + c67e38b commit 5d0f633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/OptionsResolverTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2404,7 +2404,7 @@ public function testAccessToParentOptionFromNestedNormalizerAndLazyOption()
24042404

24052405
public function testFailsIfOptionIsAlreadyDefined()
24062406
{
2407-
$this->expectException(\Symfony\Component\OptionsResolver\Exception\OptionDefinitionException::class);
2407+
$this->expectException(OptionDefinitionException::class);
24082408
$this->expectExceptionMessage('The option "foo" is already defined.');
24092409
$this->resolver->define('foo');
24102410
$this->resolver->define('foo');

0 commit comments

Comments
 (0)