diff --git a/tests/LocaleTest.php b/tests/LocaleTest.php index 96c19aa..3651b22 100644 --- a/tests/LocaleTest.php +++ b/tests/LocaleTest.php @@ -18,14 +18,14 @@ class LocaleTest extends TestCase * * @var Locale */ - private $locale; + private $localeObject; /** * Prepare tests. */ protected function setUp() { - $this->locale = new Locale('fr_FR'); + $this->localeObject = new Locale('fr_FR'); } /** @@ -35,7 +35,7 @@ class LocaleTest extends TestCase */ public function testGetToString() { - $this->assertEquals('fr_FR', $this->locale->__toString()); + $this->assertEquals('fr_FR', $this->localeObject->__toString()); } /** @@ -45,7 +45,7 @@ class LocaleTest extends TestCase */ public function testGetFullName() { - $this->assertEquals('français (France)', $this->locale->getFullName()); + $this->assertEquals('français (France)', $this->localeObject->getFullName()); } /** @@ -55,7 +55,7 @@ class LocaleTest extends TestCase */ public function testGetIso15897() { - $this->assertEquals('fr_FR', $this->locale->getIso15897()); + $this->assertEquals('fr_FR', $this->localeObject->getIso15897()); } /** @@ -65,7 +65,7 @@ class LocaleTest extends TestCase */ public function testGetBcp47() { - $this->assertEquals('fr-FR', $this->locale->getBcp47()); + $this->assertEquals('fr-FR', $this->localeObject->getBcp47()); } /** @@ -75,6 +75,6 @@ class LocaleTest extends TestCase */ public function testGetIso3166() { - $this->assertEquals('fr', $this->locale->getIso3166()); + $this->assertEquals('fr', $this->localeObject->getIso3166()); } }