Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
arukompas authored and github-actions[bot] committed Nov 11, 2024
1 parent 101eed9 commit 16600e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/LogFileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
$logFile = new LogFile($path);

expect($logFile->identifier)->toBe(
Utils::shortMd5($serverIp . ':' . $path) . '-laravel.log'
Utils::shortMd5($serverIp.':'.$path).'-laravel.log'
)->and($logFile->subFolderIdentifier())->toBe(
Utils::shortMd5($serverIp . ':' . $logFile->subFolder)
Utils::shortMd5($serverIp.':'.$logFile->subFolder)
);
});
2 changes: 1 addition & 1 deletion tests/Unit/LogFolderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
$folder = new LogFolder('folder', []);

expect($folder->identifier)->toBe(
Utils::shortMd5($serverIp . ':' . $folder->path)
Utils::shortMd5($serverIp.':'.$folder->path)
);
});

0 comments on commit 16600e9

Please sign in to comment.