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 491036d commit 25d79cfCopy full SHA for 25d79cf
Tests/FinderTest.php
@@ -11,6 +11,7 @@
11
12
namespace Symfony\Component\Finder\Tests;
13
14
+use Symfony\Component\Finder\Exception\DirectoryNotFoundException;
15
use Symfony\Component\Finder\Finder;
16
17
class FinderTest extends Iterator\RealIteratorTestCase
@@ -923,7 +924,7 @@ public function testIn()
923
924
925
public function testInWithNonExistentDirectory()
926
{
- $this->expectException(\Symfony\Component\Finder\Exception\DirectoryNotFoundException::class);
927
+ $this->expectException(DirectoryNotFoundException::class);
928
$finder = new Finder();
929
$finder->in('foobar');
930
}
0 commit comments