Various small fixes.

This commit is contained in:
James Cole
2016-12-22 18:19:50 +01:00
parent 284db7f90b
commit e76075e29f
3 changed files with 11 additions and 4 deletions

View File

@@ -129,10 +129,10 @@ class BudgetControllerTest extends TestCase
public function testPostUpdateIncome()
{
$data = [
'amount' => 200,
'amount' => '200',
];
$this->be($this->user());
$this->call('post', route('budgets.income.post', [1]), $data);
$this->call('post', route('budgets.income.post'), $data);
$this->assertResponseStatus(302);
}