mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 00:27:30 +00:00
Max out the number of iterations
This commit is contained in:
@@ -52,7 +52,7 @@ class StoreControllerTest extends TestCase
|
||||
* @param array $submission
|
||||
*
|
||||
* emptyDataProvider / storeDataProvider
|
||||
* @dataProvider emptyDataProvider
|
||||
* @dataProvider storeDataProvider
|
||||
*/
|
||||
public function testStore(array $submission): void
|
||||
{
|
||||
@@ -104,7 +104,7 @@ class StoreControllerTest extends TestCase
|
||||
return [
|
||||
'default_bill' => [
|
||||
'fields' => [
|
||||
'name' => join(',', $faker->words(5)),
|
||||
'name' => $faker->uuid,
|
||||
'amount_min' => number_format($faker->randomFloat(2, 10, 50), 2),
|
||||
'amount_max' => number_format($faker->randomFloat(2, 60, 90), 2),
|
||||
'date' => $faker->dateTimeBetween('-1 year', 'now')->format('Y-m-d'),
|
||||
@@ -146,7 +146,7 @@ class StoreControllerTest extends TestCase
|
||||
],
|
||||
'name' => [
|
||||
'fields' => [
|
||||
'name' => join(' ', $faker->words(5)),
|
||||
'name' => $faker->uuid,
|
||||
],
|
||||
],
|
||||
'amount_min' => [
|
||||
|
@@ -99,7 +99,7 @@ class UpdateControllerTest extends TestCase
|
||||
'name' => [
|
||||
'id' => 1,
|
||||
'fields' => [
|
||||
'name' => ['test_value' => join(' ', $faker->words(4))],
|
||||
'name' => ['test_value' => $faker->uuid],
|
||||
],
|
||||
'extra_ignore' => [],
|
||||
],
|
||||
|
Reference in New Issue
Block a user