Skip to content

Commit da80de2

Browse files
bnussbaugithub-actions[bot]
authored andcommitted
Fix styling
1 parent f9a5a94 commit da80de2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/ModelDataTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
$inkyImpression73 = ModelData::getByName('inky_impression_7_3');
103103
$inkyImpression133 = ModelData::getByName('inky_impression_13_3');
104104

105-
expect($inkyImpression73->paletteIds)->toBe(['color-7a','color-6a','bw']);
105+
expect($inkyImpression73->paletteIds)->toBe(['color-7a', 'color-6a', 'bw']);
106106
expect($inkyImpression133->paletteIds)->toBe(['color-6a', 'bw']);
107107
});
108108

tests/PipelineTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public function __invoke(mixed $payload): mixed
200200
expect($model->getPaletteIds())->toContain('color-spectra6');
201201

202202
// Load HTML file with color palette colors
203-
$htmlPath = __DIR__ . '/assets/color_spectra6_test.html';
203+
$htmlPath = __DIR__.'/assets/color_spectra6_test.html';
204204
expect(file_exists($htmlPath))->toBeTrue();
205205
$htmlContent = file_get_contents($htmlPath);
206206
expect($htmlContent)->toBeString();
@@ -221,7 +221,7 @@ public function __invoke(mixed $payload): mixed
221221

222222
expect($result)->toBeString();
223223
expect(file_exists($result))->toBeTrue();
224-
224+
225225
// Clean up
226226
if (file_exists($result)) {
227227
unlink($result);

0 commit comments

Comments
 (0)