From 5442dfa21ed7882519789811b5928f31df8ec6a3 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Tue, 6 Aug 2019 07:43:13 +0200 Subject: [PATCH] remove constructor parameter --- tests/functional/DependencyCheckTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/DependencyCheckTest.php b/tests/functional/DependencyCheckTest.php index 5ade50dfb4..6de2dc6479 100644 --- a/tests/functional/DependencyCheckTest.php +++ b/tests/functional/DependencyCheckTest.php @@ -87,7 +87,7 @@ 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'); + $this->dice = new Dice(); $profiler = $this->dice->create(Profiler::class, [$configCache]); $this->assertInstanceOf(Profiler::class, $profiler);