Max out the number of iterations

This commit is contained in:
James Cole
2021-03-14 04:55:48 +01:00
parent fc4d4a455b
commit d82fe2ab4c
13 changed files with 23 additions and 19 deletions

View File

@@ -52,7 +52,7 @@ class StoreControllerTest extends TestCase
* @param array $submission
*
* emptyDataProvider / storeDataProvider
* @dataProvider emptyDataProvider
* @dataProvider storeDataProvider
*/
public function testStore(array $submission): void
{
@@ -125,7 +125,7 @@ class StoreControllerTest extends TestCase
return [
'title' => [
'fields' => [
'title' => join(' ', $faker->words(3)),
'title' => $faker->uuid,
],
],
'notes' => [

View File

@@ -95,7 +95,7 @@ class UpdateControllerTest extends TestCase
'title' => [
'id' => 1,
'fields' => [
'title' => ['test_value' => $faker->text(64)],
'title' => ['test_value' => $faker->uuid],
],
'extra_ignore' => [],
],