Skip to content

Commit 7cf6905

Browse files
committed
test: fix typo
1 parent 3188b09 commit 7cf6905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Unit/UserTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function testGetIdentitiesByType(): void
5555
$this->assertEmpty($this->user->getIdentities('foo'));
5656
}
5757

58-
public function testModelfindAllWithIdentities(): void
58+
public function testModelFindAllWithIdentities(): void
5959
{
6060
fake(UserModel::class);
6161
fake(UserIdentityModel::class, ['user_id' => $this->user->id, 'type' => 'password']);
@@ -69,7 +69,7 @@ public function testModelfindAllWithIdentities(): void
6969
$this->assertCount(2, $identities);
7070
}
7171

72-
public function testModelfindByIdWithIdentities(): void
72+
public function testModelFindByIdWithIdentities(): void
7373
{
7474
fake(UserModel::class);
7575
fake(UserIdentityModel::class, ['user_id' => $this->user->id, 'type' => 'password']);

0 commit comments

Comments
 (0)