Skip to content

Commit 9b27de8

Browse files
Merge branch '3.4' into 4.0
* 3.4: fix merge
2 parents 317aff0 + 0fa7200 commit 9b27de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)