We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3188b09 commit 7cf6905Copy full SHA for 7cf6905
1 file changed
tests/Unit/UserTest.php
@@ -55,7 +55,7 @@ public function testGetIdentitiesByType(): void
55
$this->assertEmpty($this->user->getIdentities('foo'));
56
}
57
58
- public function testModelfindAllWithIdentities(): void
+ public function testModelFindAllWithIdentities(): void
59
{
60
fake(UserModel::class);
61
fake(UserIdentityModel::class, ['user_id' => $this->user->id, 'type' => 'password']);
@@ -69,7 +69,7 @@ public function testModelfindAllWithIdentities(): void
69
$this->assertCount(2, $identities);
70
71
72
- public function testModelfindByIdWithIdentities(): void
+ public function testModelFindByIdWithIdentities(): void
73
74
75
0 commit comments