Skip to content

Commit 2971317

Browse files
committed
Apply fixes from StyleCI
1 parent 84c7570 commit 2971317

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ abstract class TestCase extends Orchestra
1515
protected function getPackageProviders($app)
1616
{
1717
return [
18-
ServiceProvider::class
18+
ServiceProvider::class,
1919
];
2020
}
2121

tests/Testing/AssertTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,8 @@ public function it_can_use_arguments_instead_of_an_array_to_assert_that_it_is_mi
419419
{
420420
$this->makeMockRequest(
421421
Inertia::render('foo', [
422-
'baz' => 'foo',
423-
])
422+
'baz' => 'foo',
423+
])
424424
)->assertInertia(function (Assert $inertia) {
425425
$inertia->has('baz')->missingAll('foo', 'bar');
426426
});

0 commit comments

Comments
 (0)