Skip to content

Commit 16600e9

Browse files
arukompasgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 101eed9 commit 16600e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Unit/LogFileTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
$logFile = new LogFile($path);
3535

3636
expect($logFile->identifier)->toBe(
37-
Utils::shortMd5($serverIp . ':' . $path) . '-laravel.log'
37+
Utils::shortMd5($serverIp.':'.$path).'-laravel.log'
3838
)->and($logFile->subFolderIdentifier())->toBe(
39-
Utils::shortMd5($serverIp . ':' . $logFile->subFolder)
39+
Utils::shortMd5($serverIp.':'.$logFile->subFolder)
4040
);
4141
});

tests/Unit/LogFolderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
$folder = new LogFolder('folder', []);
3232

3333
expect($folder->identifier)->toBe(
34-
Utils::shortMd5($serverIp . ':' . $folder->path)
34+
Utils::shortMd5($serverIp.':'.$folder->path)
3535
);
3636
});

0 commit comments

Comments
 (0)