Skip to content

Commit deaae15

Browse files
committed
tests: use ViewConfig alias instead of Config\View
1 parent b55768a commit deaae15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/system/View/ViewTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use CodeIgniter\Exceptions\RuntimeException;
1818
use CodeIgniter\Test\CIUnitTestCase;
1919
use CodeIgniter\View\Exceptions\ViewException;
20-
use Config;
20+
use Config\View as ViewConfig;
2121
use PHPUnit\Framework\Attributes\Group;
2222

2323
/**
@@ -28,15 +28,15 @@ final class ViewTest extends CIUnitTestCase
2828
{
2929
private FileLocatorInterface $loader;
3030
private string $viewsDir;
31-
private Config\View $config;
31+
private ViewConfig $config;
3232

3333
protected function setUp(): void
3434
{
3535
parent::setUp();
3636

3737
$this->loader = service('locator');
3838
$this->viewsDir = __DIR__ . '/Views';
39-
$this->config = new Config\View();
39+
$this->config = new ViewConfig();
4040
$this->config->appOverridesFolder = '';
4141
}
4242

0 commit comments

Comments
 (0)