Skip to content

Commit fae2982

Browse files
ace-of-acesgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 26fce3e commit fae2982

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

tests/Feature/CacheTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
it('can use the version option to revalidate the cache', function () {
3232
/** @var TestCase $this */
33-
3433
$response = $this->get(route('image.transform', [
3534
'options' => 'version=1',
3635
'path' => 'cat.jpg',

tests/Feature/FormatTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
foreach ($allowedMimeTypes as $allowed) {
1919
/** @var TestCase $this */
2020
$response = $this->get(route('image.transform', [
21-
'options' => 'format=' . $allowed['extension'],
21+
'options' => 'format='.$allowed['extension'],
2222
'path' => 'cat.jpg',
2323
]));
2424

@@ -36,7 +36,7 @@
3636
foreach ($allowedMimeTypes as $allowed) {
3737
/** @var TestCase $this */
3838
$response = $this->get(route('image.transform', [
39-
'options' => 'format=' . $allowed['extension'],
39+
'options' => 'format='.$allowed['extension'],
4040
'path' => 'cat-kiss.gif',
4141
]));
4242

@@ -54,7 +54,7 @@
5454
foreach ($allowedMimeTypes as $allowed) {
5555
/** @var TestCase $this */
5656
$response = $this->get(route('image.transform', [
57-
'options' => 'format=' . $allowed['extension'],
57+
'options' => 'format='.$allowed['extension'],
5858
'path' => 'cat.png',
5959
]));
6060

@@ -71,7 +71,7 @@
7171
foreach ($allowedMimeTypes as $allowed) {
7272
/** @var TestCase $this */
7373
$response = $this->get(route('image.transform', [
74-
'options' => 'format=' . $allowed['extension'],
74+
'options' => 'format='.$allowed['extension'],
7575
'path' => 'cat.webp',
7676
]));
7777

0 commit comments

Comments
 (0)