8000 Fix merge · craue/symfony@6b02601 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6b02601

Browse files
Fix merge
1 parent 004c1fd commit 6b02601

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/HttpKernel/Tests/EventListener/RouterListenerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ public function testLoggingParameter($parameter, $log)
139139
$kernel = $this->getMock('Symfony\Component\HttpKernel\HttpKernelInterface');
140140
$request = Request::create('http://localhost/');
141141

142-
$listener = new RouterListener($requestMatcher, new RequestContext(), $logger, $this->requestStack);
142+
$listener = new RouterListener($requestMatcher, new RequestContext(), $logger);
143143
$listener->onKernelRequest(new GetResponseEvent($kernel, $request, HttpKernelInterface::MASTER_REQUEST));
144144
}
145145

146146
public function getLoggingParameterData()
147147
{
148148
return array(
149-
array(array('_route' => 'foo'), 'Matched route "foo".'),
150-
array(array(), 'Matched route "n/a".'),
149+
array(array('_route' => 'foo'), 'Matched route "foo" (parameters: "_route": "foo")'),
150+
array(array(), 'Matched route "n/a" (parameters: )'),
151151
);
152152
}
153153
}

0 commit comments

Comments
 (0)
0