mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 03:56:42 +00:00
Various code cleanup.
This commit is contained in:
@@ -57,10 +57,10 @@ class ExpenseReportControllerTest extends TestCase
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$accountRepository->shouldReceive('findByName')->once()->andReturn($expense);
|
||||
|
||||
$set = new Collection;
|
||||
$transaction = new Transaction();
|
||||
$set = new Collection;
|
||||
$transaction = new Transaction();
|
||||
$transaction->opposing_account_name = 'Somebody';
|
||||
$transaction->transaction_amount = '5';
|
||||
$transaction->transaction_amount = '5';
|
||||
$set->push($transaction);
|
||||
$collector->shouldReceive('setAccounts')->andReturnSelf();
|
||||
$collector->shouldReceive('setRange')->andReturnSelf();
|
||||
|
Reference in New Issue
Block a user