From 56b8b00638a05f3919c6283ff036d4b501ee3277 Mon Sep 17 00:00:00 2001 From: Stefan Graupner Date: Fri, 22 Nov 2024 15:01:27 +0100 Subject: [PATCH] fix: Repair extension load test --- tests/Bundle/DependencyInjection/TusExtensionTest.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/Bundle/DependencyInjection/TusExtensionTest.php b/tests/Bundle/DependencyInjection/TusExtensionTest.php index 337ad02..8a53a73 100644 --- a/tests/Bundle/DependencyInjection/TusExtensionTest.php +++ b/tests/Bundle/DependencyInjection/TusExtensionTest.php @@ -22,7 +22,13 @@ protected function getContainerExtensions(): array public function testExtensionCanLoad(): void { - $this->load(); + $this->load([ + 'cache_type' => [ + 'apcu' => [ + 'enabled' => true, + ], + ], + ]); self::assertTrue($this->container->hasExtension('tus')); }