Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk authored and github-actions[bot] committed Jan 2, 2025
1 parent 9ed5317 commit fdf7bdb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/ForgeSDKTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -122,7 +122,7 @@ public function testRetryHandlesFalseResultFromClosure()
}
}

public function testRetryHandlesNullResultFromClosure()
public function test_retry_handles_null_result_from_closure()
{
$requestMaker = new class
{
Expand All @@ -139,7 +139,7 @@ public function testRetryHandlesNullResultFromClosure()
}
}

public function testRetryHandlesFalseyStringResultFromClosure()
public function test_retry_handles_falsey_string_result_from_closure()
{
$requestMaker = new class
{
Expand All @@ -156,7 +156,7 @@ public function testRetryHandlesFalseyStringResultFromClosure()
}
}

public function testRetryHandlesFalseyNumerResultFromClosure()
public function test_retry_handles_falsey_numer_result_from_closure()
{
$requestMaker = new class
{
Expand All @@ -173,7 +173,7 @@ public function testRetryHandlesFalseyNumerResultFromClosure()
}
}

public function testRetryHandlesFalseyArrayResultFromClosure()
public function test_retry_handles_falsey_array_result_from_closure()
{
$requestMaker = new class
{
Expand All @@ -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));

Expand All @@ -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));

Expand Down

0 comments on commit fdf7bdb

Please sign in to comment.