8000 fix merge · symfony/symfony@81dafca · GitHub
[go: up one dir, main page]

Skip to content

Commit 81dafca

Browse files
fix merge
1 parent f5060c1 commit 81dafca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Routing/Tests/Matcher/RedirectableUrlMatcherTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function testSchemeRequirement()
113113
$coll = new RouteCollection();
114114
$coll->add('foo', new Route('/foo', array(), array(), array(), '', array('https')));
115115
$matcher = $this->getUrlMatcher($coll, new RequestContext());
116-
$matcher->expects($this->once())->method('redirect')->with('/foo', 'foo', 'https')->willReturn(array('_route' => 'foo'));
116+
$matcher->expects($this->once())->method('redirect')->with('/foo', 'foo', 'https')->willReturn(array());
117117
$this->assertSame(array('_route' => 'foo'), $matcher->match('/foo'));
118118
}
119119

0 commit comments

Comments
 (0)
0