mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Removed all uinnecessary usages of equalsTo param constraint
This commit is contained in:
@@ -43,9 +43,9 @@ class NotFoundRedirectResolverTest extends TestCase
|
||||
string $expectedRedirectTo,
|
||||
): void {
|
||||
$expectedResp = new Response();
|
||||
$this->helper->expects($this->once())->method('buildRedirectResponse')->with(
|
||||
$this->equalTo($expectedRedirectTo),
|
||||
)->willReturn($expectedResp);
|
||||
$this->helper->expects($this->once())->method('buildRedirectResponse')->with($expectedRedirectTo)->willReturn(
|
||||
$expectedResp,
|
||||
);
|
||||
|
||||
$resp = $this->resolver->resolveRedirectResponse($notFoundType, $redirectConfig, $uri);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user