Skip to content

Commit

Permalink
#
Browse files Browse the repository at this point in the history
  • Loading branch information
lanlin committed Jan 27, 2022
1 parent 2f35d37 commit 170550f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Messages/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public function testReturnAllMessages(): void
'bcc' => $this->faker->email,
'from' => $this->faker->email,
'any_email' => $this->faker->email,
'in' => $this->faker->randomElement(['name', 'display_name', 'id']),
'view' => $this->faker->randomElement(['ids', 'count', 'expanded']),
'in' => 'display_name',
'view' => 'ids',
'limit' => 100,
'offset' => 0,
'subject' => $this->faker->title,
Expand Down
4 changes: 2 additions & 2 deletions tests/Threads/ThreadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public function testReturnAllThreads(): void
'bcc' => $this->faker->email,
'from' => $this->faker->email,
'any_email' => $this->faker->email,
'in' => $this->faker->randomElement(['name', 'display_name', 'id']),
'in' => 'display_name',
'not_in' => $this->faker->word,
'view' => $this->faker->randomElement(['ids', 'count', 'expanded']),
'view' => 'ids',
'limit' => 100,
'offset' => 0,
'subject' => $this->faker->title,
Expand Down

0 comments on commit 170550f

Please sign in to comment.