From 2ab59791c6ce1775da8647f291af449313e389e3 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 2 Sep 2010 20:49:00 +0200 Subject: [PATCH] [DomCrawler] Fixing typo --- tests/Symfony/Tests/Component/DomCrawler/CrawlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Symfony/Tests/Component/DomCrawler/CrawlerTest.php b/tests/Symfony/Tests/Component/DomCrawler/CrawlerTest.php index 3fecbbeb09..ba76252937 100644 --- a/tests/Symfony/Tests/Component/DomCrawler/CrawlerTest.php +++ b/tests/Symfony/Tests/Component/DomCrawler/CrawlerTest.php @@ -297,7 +297,7 @@ class CrawlerTest extends \PHPUnit_Framework_TestCase $this->assertEquals('http://example.com/bar/foo', $crawler->link()->getUri(), '->link() returns a Link instance'); $crawler = $this->createTestCrawler('http://example.com/bar')->selectLink('Foo'); - $this->assertEquals('http://example.com/foo', $crawler->link()->getUri(), '->form() linketurns a Link instance'); + $this->assertEquals('http://example.com/foo', $crawler->link()->getUri(), '->link() returns a Link instance'); try { $this->createTestCrawler()->filter('ol')->link();