Skip to content

Commit 416c955

Browse files
committed
remove return type from tests cases
1 parent c8622db commit 416c955

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/platform/tests/Bridge/Anthropic/ResultConverterRateLimitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#[Small]
2525
final class ResultConverterRateLimitTest extends TestCase
2626
{
27-
public function testRateLimitExceededThrowsException(): void
27+
public function testRateLimitExceededThrowsException()
2828
{
2929
$httpClient = new MockHttpClient([
3030
new MockResponse('{"type":"error","error":{"type":"rate_limit_error","message":"This request would exceed the rate limit for your organization"}}', [
@@ -49,7 +49,7 @@ public function testRateLimitExceededThrowsException(): void
4949
}
5050
}
5151

52-
public function testRateLimitExceededWithoutRetryAfter(): void
52+
public function testRateLimitExceededWithoutRetryAfter()
5353
{
5454
$httpClient = new MockHttpClient([
5555
new MockResponse('{"type":"error","error":{"type":"rate_limit_error","message":"This request would exceed the rate limit for your organization"}}', [

src/platform/tests/Bridge/Gemini/Gemini/ResultConverterRateLimitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#[Small]
2525
final class ResultConverterRateLimitTest extends TestCase
2626
{
27-
public function testRateLimitExceededThrowsException(): void
27+
public function testRateLimitExceededThrowsException()
2828
{
2929
$httpClient = new MockHttpClient([
3030
new MockResponse('{"error":{"code":429,"message":"Resource has been exhausted (e.g. check quota).","status":"RESOURCE_EXHAUSTED"}}', [

src/platform/tests/Bridge/OpenAi/Gpt/ResultConverterRateLimitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#[Small]
2525
final class ResultConverterRateLimitTest extends TestCase
2626
{
27-
public function testRateLimitExceededWithRequestsResetTime(): void
27+
public function testRateLimitExceededWithRequestsResetTime()
2828
{
2929
$httpClient = new MockHttpClient([
3030
new MockResponse('{"error":{"message":"Rate limit reached for requests","type":"rate_limit_error"}}', [
@@ -51,7 +51,7 @@ public function testRateLimitExceededWithRequestsResetTime(): void
5151
}
5252
}
5353

54-
public function testRateLimitExceededWithTokensResetTime(): void
54+
public function testRateLimitExceededWithTokensResetTime()
5555
{
5656
$httpClient = new MockHttpClient([
5757
new MockResponse('{"error":{"message":"Rate limit reached for tokens","type":"rate_limit_error"}}', [

0 commit comments

Comments
 (0)