Skip to content

Commit ae103ce

Browse files
committed
Fix tests.
1 parent 846c522 commit ae103ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/FeatureTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ function () use ($user1, $users) {
205205

206206
$this->assertSame(1, $sqls->count());
207207

208-
$this->assertTrue($users[0]->has_followed);
208+
$this->assertFalse($users[0]->has_followed);
209209
$this->assertTrue($users[1]->has_followed);
210-
$this->assertFalse($users[2]->has_followed);
211-
$this->assertFalse($users[3]->has_followed);
210+
$this->assertTrue($users[2]->has_followed);
211+
$this->assertTrue($users[3]->has_followed);
212212

213213
// with custom resolver
214214
$posts = \collect(['author' => $user2], ['author' => $user3], ['author' => $user4]);

0 commit comments

Comments
 (0)