Skip to content

Commit 0fa7200

Browse files
fix merge
1 parent cad8035 commit 0fa7200

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)