Skip to content

Commit 5548502

Browse files
aarondfrancisgithub-actions[bot]
authored andcommitted
Fix code styling [ci skip]
1 parent 2dd4c52 commit 5548502

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Unit/BasicTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ public function too_many_total_throw()
9393
/** @test */
9494
public function reported_instead_of_thrown()
9595
{
96-
$handler = new class {
96+
$handler = new class
97+
{
9798
public $reported;
9899

99100
public function report(Throwable $e)
@@ -242,12 +243,11 @@ public function handles_errors_as_well_as_exceptions()
242243
$result = Flaky::make(__FUNCTION__)
243244
->allowFailuresFor(10)
244245
->run(function () {
245-
strlen("test", "extra");
246+
strlen('test', 'extra');
246247
});
247248

248249
$this->assertEquals(true, $result->failed);
249250
}
250-
251251
}
252252

253253
class SpecificException extends \Exception

0 commit comments

Comments
 (0)