From fdf7bdb316cc7cbfdebe0dee73a71fbdbb9e3759 Mon Sep 17 00:00:00 2001 From: jbrooksuk Date: Thu, 2 Jan 2025 16:40:54 +0000 Subject: [PATCH] Fix code styling --- tests/ForgeSDKTest.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/ForgeSDKTest.php b/tests/ForgeSDKTest.php index cb1a609..ecb5317 100644 --- a/tests/ForgeSDKTest.php +++ b/tests/ForgeSDKTest.php @@ -105,7 +105,7 @@ public function test_handling_failed_action_errors() } } - public function testRetryHandlesFalseResultFromClosure() + public function test_retry_handles_false_result_from_closure() { $requestMaker = new class { @@ -122,7 +122,7 @@ public function testRetryHandlesFalseResultFromClosure() } } - public function testRetryHandlesNullResultFromClosure() + public function test_retry_handles_null_result_from_closure() { $requestMaker = new class { @@ -139,7 +139,7 @@ public function testRetryHandlesNullResultFromClosure() } } - public function testRetryHandlesFalseyStringResultFromClosure() + public function test_retry_handles_falsey_string_result_from_closure() { $requestMaker = new class { @@ -156,7 +156,7 @@ public function testRetryHandlesFalseyStringResultFromClosure() } } - public function testRetryHandlesFalseyNumerResultFromClosure() + public function test_retry_handles_falsey_numer_result_from_closure() { $requestMaker = new class { @@ -173,7 +173,7 @@ public function testRetryHandlesFalseyNumerResultFromClosure() } } - public function testRetryHandlesFalseyArrayResultFromClosure() + public function test_retry_handles_falsey_array_result_from_closure() { $requestMaker = new class { @@ -190,7 +190,7 @@ public function testRetryHandlesFalseyArrayResultFromClosure() } } - public function testRateLimitExceededWithHeaderSet() + public function test_rate_limit_exceeded_with_header_set() { $forge = new Forge('123', $http = Mockery::mock(Client::class)); @@ -209,7 +209,7 @@ public function testRateLimitExceededWithHeaderSet() } } - public function testRateLimitExceededWithHeaderNotAvailable() + public function test_rate_limit_exceeded_with_header_not_available() { $forge = new Forge('123', $http = Mockery::mock(Client::class));