Skip to content

Commit a217548

Browse files
committed
csfix
1 parent f442f12 commit a217548

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

tests/Feature/CommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
test('command "build" calls methods from StaticBuilder', function () {
99
$app = getLibrarian();
1010
$app->runCommand(['minicli', 'build']);
11-
})->expectOutputRegex("/Finished building static website/");
11+
})->expectOutputRegex("/Finished building static website/");

tests/Pest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,3 @@ function getCustomIndexPageApp(): App
101101

102102
return $app;
103103
}
104-
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
template index
1+
template index

tests/Unit/StaticBuilderTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Librarian\Provider\TwigServiceProvider;
77
use Minicli\App;
88

9-
beforeEach(function() {
9+
beforeEach(function () {
1010
$app = new App(getDefaultAppConfig());
1111
$app->addService('builder', new StaticBuilder());
1212
$app->addService('twig', new TwigServiceProvider());
@@ -70,4 +70,3 @@
7070
$builder->cleanUp();
7171
expect(is_file($builder->outputPath . '/index.html'))->toBeFalse();
7272
});
73-

0 commit comments

Comments
 (0)