Fixed currency tests.

This commit is contained in:
James Cole 2015-05-10 09:26:44 +02:00
parent 88f714999e
commit ec8e39c16f

View File

@ -76,7 +76,7 @@ class CurrencyRepositoryTest extends TestCase
$preference->data = 'ABC';
$preference->save();
$found = $this->object->getCurrencyByPreference($preference);
$this->assertEquals($first->id, $found->id);
$this->assertEquals(1, $found->id); // EUR is first and will be set.
}
/**