From bc867e8e847d2167aea4da1ec7102e069be3c31c Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Thu, 9 May 2013 08:05:59 -0700 Subject: [PATCH] PHP 5.3 fix --- tests/GeoIP2/Test/Model/CountryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/GeoIP2/Test/Model/CountryTest.php b/tests/GeoIP2/Test/Model/CountryTest.php index 41b5b2f..b17e50a 100644 --- a/tests/GeoIP2/Test/Model/CountryTest.php +++ b/tests/GeoIP2/Test/Model/CountryTest.php @@ -32,7 +32,7 @@ class CountryTest extends \PHPUnit_Framework_TestCase public function setUp () { - $this->model = new Country($this->raw, ['en']); + $this->model = new Country($this->raw, array('en')); } public function testObjects ()