From 813f3a76f73919b03ec47d5adbc74f75290da957 Mon Sep 17 00:00:00 2001 From: Aleksey Polyvanyi Date: Tue, 26 Nov 2024 16:37:56 +0100 Subject: [PATCH] -refactoring --- tests/DependencyInjection/DoctrineExtensionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DependencyInjection/DoctrineExtensionTest.php b/tests/DependencyInjection/DoctrineExtensionTest.php index 3d838fd1..7ebce462 100644 --- a/tests/DependencyInjection/DoctrineExtensionTest.php +++ b/tests/DependencyInjection/DoctrineExtensionTest.php @@ -528,7 +528,7 @@ public function testDependencyInjectionConfigurationDefaults(): void $this->assertEquals(PhpArrayAdapter::class, $definition->getClass()); $arguments = $definition->getArguments(); - $this->assertSame('%kernel.cache_dir%/doctrine/orm/default_metadata.php', $arguments[0]); + $this->assertSame('%kernel.build_dir%/doctrine/orm/default_metadata.php', $arguments[0]); $wrappedDefinition = $arguments[1]; $this->assertSame(ArrayAdapter::class, $wrappedDefinition->getClass());