Skip to content

Commit 11659d7

Browse files
committed
Convert snake-cased test method names to camel-cased
1 parent bcc032c commit 11659d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Integration/TenantAwareAuthTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function customTokensIncludeTheTenant(): void
5959
}
6060

6161
#[Test]
62-
public function it_can_sign_in_anonymously(): void
62+
public function itCanSignInAnonymously(): void
6363
{
6464
$user = $this->auth->createAnonymousUser();
6565
$result = $this->auth->signInAsUser($user);

tests/Unit/Exception/MessagingApiExceptionConverterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public function itKnowsWhenToRetryAfterWithDateStrings(): void
156156
}
157157

158158
#[Test]
159-
public function it_does_not_know_when_to_retry_when_it_does_not_have_to(): void
159+
public function itDoesNotKnowWhenToRetryWhenItDoesNotHaveTo(): void
160160
{
161161
$response = new Response(503); // no Retry-After
162162

0 commit comments

Comments
 (0)