mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix a test
This commit is contained in:
parent
1be49876df
commit
5f153b8a01
@ -124,11 +124,11 @@ class BillControllerTest extends TestCase
|
|||||||
$data = [
|
$data = [
|
||||||
'name' => 'New Bill ' . rand(1000, 9999),
|
'name' => 'New Bill ' . rand(1000, 9999),
|
||||||
'match' => 'some words',
|
'match' => 'some words',
|
||||||
'amount_min' => 100,
|
'amount_min' => '100',
|
||||||
'amount_currency_id_amount_min' => 1,
|
'amount_currency_id_amount_min' => 1,
|
||||||
'amount_currency_id_amount_max' => 1,
|
'amount_currency_id_amount_max' => 1,
|
||||||
'skip' => 0,
|
'skip' => 0,
|
||||||
'amount_max' => 100,
|
'amount_max' => '100',
|
||||||
'date' => '2016-01-01',
|
'date' => '2016-01-01',
|
||||||
'repeat_freq' => 'monthly',
|
'repeat_freq' => 'monthly',
|
||||||
];
|
];
|
||||||
@ -154,11 +154,11 @@ class BillControllerTest extends TestCase
|
|||||||
$data = [
|
$data = [
|
||||||
'name' => 'Updated Bill ' . rand(1000, 9999),
|
'name' => 'Updated Bill ' . rand(1000, 9999),
|
||||||
'match' => 'some more words',
|
'match' => 'some more words',
|
||||||
'amount_min' => 100,
|
'amount_min' => '100',
|
||||||
'amount_currency_id_amount_min' => 1,
|
'amount_currency_id_amount_min' => 1,
|
||||||
'amount_currency_id_amount_max' => 1,
|
'amount_currency_id_amount_max' => 1,
|
||||||
'skip' => 0,
|
'skip' => 0,
|
||||||
'amount_max' => 100,
|
'amount_max' => '100',
|
||||||
'date' => '2016-01-01',
|
'date' => '2016-01-01',
|
||||||
'repeat_freq' => 'monthly',
|
'repeat_freq' => 'monthly',
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user