We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 846c522 commit ae103ceCopy full SHA for ae103ce
tests/FeatureTest.php
@@ -205,10 +205,10 @@ function () use ($user1, $users) {
205
206
$this->assertSame(1, $sqls->count());
207
208
- $this->assertTrue($users[0]->has_followed);
+ $this->assertFalse($users[0]->has_followed);
209
$this->assertTrue($users[1]->has_followed);
210
- $this->assertFalse($users[2]->has_followed);
211
- $this->assertFalse($users[3]->has_followed);
+ $this->assertTrue($users[2]->has_followed);
+ $this->assertTrue($users[3]->has_followed);
212
213
// with custom resolver
214
$posts = \collect(['author' => $user2], ['author' => $user3], ['author' => $user4]);
0 commit comments