mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fixed test.
This commit is contained in:
parent
7bba7fcf66
commit
e791f7fde2
@ -77,7 +77,7 @@ class AccountController extends Controller
|
|||||||
public function edit(Account $account, AccountRepositoryInterface $repository)
|
public function edit(Account $account, AccountRepositoryInterface $repository)
|
||||||
{
|
{
|
||||||
$what = Config::get('firefly.shortNamesByFullName')[$account->accountType->type];
|
$what = Config::get('firefly.shortNamesByFullName')[$account->accountType->type];
|
||||||
$subTitle = Config::get('firefly.subTitlesByIdentifier.' . $what);
|
$subTitle = 'Edit ' . strtolower(e($account->accountType->type)) . ' "' . e($account->name) . '"';
|
||||||
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
$subTitleIcon = Config::get('firefly.subIconsByIdentifier.' . $what);
|
||||||
$openingBalance = $repository->openingBalanceTransaction($account);
|
$openingBalance = $repository->openingBalanceTransaction($account);
|
||||||
|
|
||||||
|
@ -15,6 +15,6 @@ modules:
|
|||||||
user: ''
|
user: ''
|
||||||
password: ''
|
password: ''
|
||||||
dump: tests/_data/dump.sql
|
dump: tests/_data/dump.sql
|
||||||
Laravel4:
|
Laravel5:
|
||||||
environment: 'testing'
|
environment: 'testing'
|
||||||
filters: false
|
filters: false
|
||||||
|
Loading…
Reference in New Issue
Block a user