Fix DI-check test

This commit is contained in:
Philipp Holzer 2019-07-24 12:48:29 +02:00
부모 6759e0c193
커밋 71bc37c1c1
No known key found for this signature in database
GPG 키 ID: D8365C3D36B77D90
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -83,6 +83,8 @@ class dependencyCheck extends TestCase
]
]);
// create new DI-library because of shared instance rule (so the Profiler wouldn't get created twice)
$this->dice = new Dice(include __DIR__ . '/../../static/dependencies.config.php');
$profiler = $this->dice->create(Profiler::class, [$configCache]);
$this->assertInstanceOf(Profiler::class, $profiler);