Skip to content

Commit

Permalink
Fix unit tests, we apparently have some LARGE sizes in there.
Browse files Browse the repository at this point in the history
  • Loading branch information
meisterT committed Mar 23, 2024
1 parent a86b7b9 commit b324c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/Utils/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ public static function printhost(string $hostname, bool $full = false): string
public static function printsize(int $size, int $decimals = 1): string
{
$factor = 1024;
$units = ['B', 'KB', 'MB', 'GB'];
$units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB'];
$display = $size;

$exact = true;
Expand Down

0 comments on commit b324c4b

Please sign in to comment.