Skip to content

Commit 7eede2a

Browse files
committed
fixed CS
1 parent 88a2243 commit 7eede2a

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)