Skip to content

Commit b814b41

Browse files
committed
Merge branch '3.1' into 3.2
* 3.1: fixed CS
2 parents a036905 + 7eede2a commit b814b41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/CrawlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ public function testConstructor()
3030
public function testGetUri()
3131
{
3232
$uri = 'http://symfony.com';
33-
$crawler = new Crawler(null, $uri);
33+
$crawler = new Crawler(null, $uri);
3434
$this->assertEquals($uri, $crawler->getUri());
3535
}
3636

3737
public function testGetBaseHref()
3838
{
3939
$baseHref = 'http://symfony.com';
40-
$crawler = new Crawler(null, null, $baseHref);
40+
$crawler = new Crawler(null, null, $baseHref);
4141
$this->assertEquals($baseHref, $crawler->getBaseHref());
4242
}
4343

0 commit comments

Comments
 (0)