Skip to content

Commit

Permalink
Fix tests (#1284)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored Dec 19, 2022
1 parent 173850e commit 3b1220b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions database/factories/EntryModelFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ public function definition()
{
return [
'sequence' => random_int(1, 10000),
'uuid' => $this->faker->uuid,
'batch_id' => $this->faker->uuid,
'uuid' => $this->faker->uuid(),
'batch_id' => $this->faker->uuid(),
'type' => $this->faker->randomElement([
EntryType::CACHE, EntryType::CLIENT_REQUEST, EntryType::COMMAND, EntryType::DUMP, EntryType::EVENT,
EntryType::EXCEPTION, EntryType::JOB, EntryType::LOG, EntryType::MAIL, EntryType::MODEL,
EntryType::NOTIFICATION, EntryType::QUERY, EntryType::REDIS, EntryType::REQUEST,
EntryType::SCHEDULED_TASK,
]),
'content' => [$this->faker->word => $this->faker->word],
'content' => [$this->faker->word() => $this->faker->word()],
];
}
}

0 comments on commit 3b1220b

Please sign in to comment.