Skip to content

Commit 034f496

Browse files
committed
style: ran pint
1 parent 869a747 commit 034f496

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

tests/Feature/Http/MilestoneJobTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
test('dispatch MilestoneRelease', function () {
3939
$repo = Repository::factory()->create();
4040
Storage::fake();
41-
Storage::createDirectory($repo->snapshotDir(). '/snapshot1');
42-
Storage::createDirectory($repo->snapshotDir(). '/snapshot2');
41+
Storage::createDirectory($repo->snapshotDir().'/snapshot1');
42+
Storage::createDirectory($repo->snapshotDir().'/snapshot2');
4343
Bus::fake(SyncRepository::class);
4444
MilestoneRelease::dispatch($repo);
4545
Bus::assertDispatched(SyncRepository::class);
46-
Storage::assertMissing($repo->snapshotDir(). '/snapshot1');
47-
Storage::assertMissing($repo->snapshotDir(). '/snapshot2');
46+
Storage::assertMissing($repo->snapshotDir().'/snapshot1');
47+
Storage::assertMissing($repo->snapshotDir().'/snapshot2');
4848
});

tests/Feature/SyncRepositoryTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use App\Listeners\CleanRepository;
77
use App\Listeners\ProcessRepositoryUpstream;
88
use App\Models\Repository;
9-
use Illuminate\Http\UploadedFile;
109
use Illuminate\Process\PendingProcess;
1110
use Illuminate\Support\Facades\Event;
1211
use Illuminate\Support\Facades\Process;

0 commit comments

Comments
 (0)