Skip to content

Commit

Permalink
[GF] Fix style CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Giacomo Fabbian committed Feb 18, 2020
1 parent 799f417 commit 9d5265c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/QueryTest.php
Expand Up @@ -349,11 +349,11 @@ public function testSample(): void
// Check for sample method
$randomUsers = User::sample(2)->get();

//Check that has been returned the same number of user that has been requested
//Check that has been returned the same number of users that has been requested
$this->assertEquals(2, $randomUsers->count());

//Check the user existence
foreach ($randomUsers as $randomUser){
//Check for the users existence
foreach ($randomUsers as $randomUser) {
$user = User::find($randomUser->id);
$this->assertNotNull($user);
}
Expand Down

0 comments on commit 9d5265c

Please sign in to comment.