From 00715b80438b2f2de3bc052940734b330539eba0 Mon Sep 17 00:00:00 2001 From: Benjamin Laugueux Date: Tue, 11 Sep 2012 22:54:28 +0300 Subject: [PATCH] Update tests/Geocoder/Tests/HttpAdapter/BuzzHttpAdapterTest.php Fixed invalid argument provided. --- tests/Geocoder/Tests/HttpAdapter/BuzzHttpAdapterTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Geocoder/Tests/HttpAdapter/BuzzHttpAdapterTest.php b/tests/Geocoder/Tests/HttpAdapter/BuzzHttpAdapterTest.php index 04f0dcc58..d3f0fcb00 100644 --- a/tests/Geocoder/Tests/HttpAdapter/BuzzHttpAdapterTest.php +++ b/tests/Geocoder/Tests/HttpAdapter/BuzzHttpAdapterTest.php @@ -20,7 +20,7 @@ public function testGetNullContent() public function testGetFalseContent() { $buzz = new BuzzHttpAdapter(); - $this->assertNull($buzz->getContent(null)); + $this->assertNull($buzz->getContent(false)); } public function testGetContentWithCustomBrowser()