Fixed test.

This commit is contained in:
James Cole
2015-02-14 15:53:56 +01:00
parent 7bba7fcf66
commit e791f7fde2
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ class AccountController extends Controller
public function edit(Account $account, AccountRepositoryInterface $repository)
{
$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);
$openingBalance = $repository->openingBalanceTransaction($account);