File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/Integration/DependencyInjection Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
<argument key =" $extendedHttpMockClientCollection" type =" service" id =" BehatHttpMockContext\Collection\ExtendedHttpMockClientCollection" />
10
10
</service >
11
11
<service public =" true" autowire =" true" id =" BehatHttpMockContext\Collection\ExtendedHttpMockClientCollection" class =" BehatHttpMockContext\Collection\ExtendedHttpMockClientCollection" >
12
- <argument key =" $handlers " type =" tagged_iterator" tag =" mock.http_client" />
12
+ <argument key =" $httpClients " type =" tagged_iterator" tag =" mock.http_client" />
13
13
</service >
14
14
</services >
15
15
</container >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public function testWithDefaultConfig(): void
22
22
$ collectionDefinition = $ container ->getDefinition (ExtendedHttpMockClientCollection::class);
23
23
self ::assertSame (ExtendedHttpMockClientCollection::class, $ collectionDefinition ->getClass ());
24
24
25
- $ handlersArgument = $ collectionDefinition ->getArgument ('$handlers ' );
25
+ $ handlersArgument = $ collectionDefinition ->getArgument ('$httpClients ' );
26
26
self ::assertInstanceOf (TaggedIteratorArgument::class, $ handlersArgument );
27
27
self ::assertSame (
28
28
'mock.http_client ' ,
You can’t perform that action at this time.
0 commit comments