This should fix the tests.

This commit is contained in:
James Cole
2015-06-23 22:13:13 +02:00
parent cd27f0ad69
commit 124c9303b9
5 changed files with 27 additions and 14 deletions

View File

@@ -116,7 +116,10 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
*/
public function store(array $data)
{
$piggyBank = PiggyBank::create($data);
$data['remind_me'] = false;
$data['reminder_skip'] = 0;
$piggyBank = PiggyBank::create($data);
return $piggyBank;
}