diff --git a/ISO4217.php b/ISO4217.php index ab8e9e6..432ab16 100644 --- a/ISO4217.php +++ b/ISO4217.php @@ -418,6 +418,7 @@ public function getAll() 'GR', 'IE', 'IT', + 'LT', 'LU', 'MC', 'ME', @@ -714,13 +715,6 @@ public function getAll() 'exp' => 2, 'country' => 'LS', ), - array( - 'name' => 'Lithuanian Litas', - 'alpha3' => 'LTL', - 'numeric' => '440', - 'exp' => 2, - 'country' => 'LT', - ), array( 'name' => 'Latvian Lats', 'alpha3' => 'LVL', diff --git a/ISO4217Test.php b/ISO4217Test.php index 50c44c4..079dfe8 100644 --- a/ISO4217Test.php +++ b/ISO4217Test.php @@ -92,7 +92,7 @@ public function testGetAll() { $iso4217 = new ISO4217(); $this->assertInternalType('array', $iso4217->getAll()); - $this->assertCount(157, $iso4217->getAll()); + $this->assertCount(156, $iso4217->getAll()); } /**