Skip to content

Commit 0af35c2

Browse files
committed
Remove unnecessary class name
1 parent 5c781d4 commit 0af35c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/EmbeddedRelationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testEmbedsManySave()
4242
$address->unsetEventDispatcher();
4343

4444
$this->assertNotNull($user->addresses);
45-
$this->assertInstanceOf(\Illuminate\Database\Eloquent\Collection::class, $user->addresses);
45+
$this->assertInstanceOf(Collection::class, $user->addresses);
4646
$this->assertEquals(['London'], $user->addresses->pluck('city')->all());
4747
$this->assertInstanceOf(DateTime::class, $address->created_at);
4848
$this->assertInstanceOf(DateTime::class, $address->updated_at);

0 commit comments

Comments
 (0)