From 0da370c42d0b84406cc2eceb0a5eec324766a1d6 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 13 Jul 2018 18:45:11 +0200 Subject: [PATCH] Not really a solution for the test, but might work. --- tests/Unit/Factory/AccountFactoryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Unit/Factory/AccountFactoryTest.php b/tests/Unit/Factory/AccountFactoryTest.php index 951ec2bb92..8c3f61e24d 100644 --- a/tests/Unit/Factory/AccountFactoryTest.php +++ b/tests/Unit/Factory/AccountFactoryTest.php @@ -341,7 +341,7 @@ class AccountFactoryTest extends TestCase $data = [ 'account_type_id' => null, 'accountType' => 'asset', - 'iban' => 'NL18RABO0326747238', + 'iban' => 'NL02ABNA0870809585', 'name' => 'Basic asset account #' . random_int(1, 1000), 'virtualBalance' => null, 'active' => true, @@ -356,7 +356,7 @@ class AccountFactoryTest extends TestCase // assert stuff about account: $this->assertEquals($account->name, $data['name']); $this->assertEquals(AccountType::ASSET, $account->accountType->type); - $this->assertEquals('NL18RABO0326747238', $account->iban); + $this->assertEquals('NL02ABNA0870809585', $account->iban); $this->assertTrue($account->active); $this->assertEquals('0', $account->virtual_balance);