Skip to content

Commit fdf7bdb

Browse files
jbrooksukgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 9ed5317 commit fdf7bdb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/ForgeSDKTest.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function test_handling_failed_action_errors()
105105
}
106106
}
107107

108-
public function testRetryHandlesFalseResultFromClosure()
108+
public function test_retry_handles_false_result_from_closure()
109109
{
110110
$requestMaker = new class
111111
{
@@ -122,7 +122,7 @@ public function testRetryHandlesFalseResultFromClosure()
122122
}
123123
}
124124

125-
public function testRetryHandlesNullResultFromClosure()
125+
public function test_retry_handles_null_result_from_closure()
126126
{
127127
$requestMaker = new class
128128
{
@@ -139,7 +139,7 @@ public function testRetryHandlesNullResultFromClosure()
139139
}
140140
}
141141

142-
public function testRetryHandlesFalseyStringResultFromClosure()
142+
public function test_retry_handles_falsey_string_result_from_closure()
143143
{
144144
$requestMaker = new class
145145
{
@@ -156,7 +156,7 @@ public function testRetryHandlesFalseyStringResultFromClosure()
156156
}
157157
}
158158

159-
public function testRetryHandlesFalseyNumerResultFromClosure()
159+
public function test_retry_handles_falsey_numer_result_from_closure()
160160
{
161161
$requestMaker = new class
162162
{
@@ -173,7 +173,7 @@ public function testRetryHandlesFalseyNumerResultFromClosure()
173173
}
174174
}
175175

176-
public function testRetryHandlesFalseyArrayResultFromClosure()
176+
public function test_retry_handles_falsey_array_result_from_closure()
177177
{
178178
$requestMaker = new class
179179
{
@@ -190,7 +190,7 @@ public function testRetryHandlesFalseyArrayResultFromClosure()
190190
}
191191
}
192192

193-
public function testRateLimitExceededWithHeaderSet()
193+
public function test_rate_limit_exceeded_with_header_set()
194194
{
195195
$forge = new Forge('123', $http = Mockery::mock(Client::class));
196196

@@ -209,7 +209,7 @@ public function testRateLimitExceededWithHeaderSet()
209209
}
210210
}
211211

212-
public function testRateLimitExceededWithHeaderNotAvailable()
212+
public function test_rate_limit_exceeded_with_header_not_available()
213213
{
214214
$forge = new Forge('123', $http = Mockery::mock(Client::class));
215215

0 commit comments

Comments
 (0)