|
61 | 61 | use Symfony\Component\Validator\DependencyInjection\AddConstraintValidatorsPass;
|
62 | 62 | use Symfony\Component\Validator\Mapping\Loader\PropertyInfoLoader;
|
63 | 63 | use Symfony\Component\Workflow;
|
| 64 | +use Symfony\Component\Workflow\Metadata\InMemoryMetadataStore; |
64 | 65 | use Symfony\Component\Workflow\WorkflowEvents;
|
65 | 66 | use Symfony\Contracts\Cache\CacheInterface;
|
66 | 67 | use Symfony\Contracts\Cache\TagAwareCacheInterface;
|
67 |
| -use Symfony\Component\Workflow\Metadata\InMemoryMetadataStore; |
68 | 68 |
|
69 | 69 | abstract class FrameworkExtensionTest extends TestCase
|
70 | 70 | {
|
@@ -1333,7 +1333,8 @@ public function testCachePoolServices()
|
1333 | 1333 | $this->assertCachePoolServiceDefinitionIsCreated($container, 'cache.bar', 'cache.adapter.doctrine', 5);
|
1334 | 1334 | $this->assertCachePoolServiceDefinitionIsCreated($container, 'cache.baz', 'cache.adapter.filesystem', 7);
|
1335 | 1335 | $this->assertCachePoolServiceDefinitionIsCreated($container, 'cache.foobar', 'cache.adapter.psr6', 10);
|
1336 |
| - $this->assertCachePoolServiceDefinitionIsCreated($container, 'cache.def', 'cache.app', 11); |
| 1336 | + $this->assertCachePoolServiceDefinitionIsCreated($container, 'cache.def', 'cache.app', 'PT11S'); |
| 1337 | + $this->assertCachePoolServiceDefinitionIsCreated($container, 'cache.expr', 'cache.app', '13 seconds'); |
1337 | 1338 |
|
1338 | 1339 | $chain = $container->getDefinition('cache.chain');
|
1339 | 1340 |
|
|
0 commit comments