Skip to content

Commit c67e38b

Browse files
committed
Use import instead of FQCN
1 parent f2021e0 commit c67e38b

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)