typo in error log message

This commit is contained in:
akemidx 2023-11-08 15:29:29 -05:00
parent 2051ac785d
commit 4382adce85
2 changed files with 2 additions and 2 deletions

View file

@ -350,7 +350,7 @@ class Helper
if ($index >= $total_colors) {
\Log::error('Status label count is '.$index.' and exceeds the allowed count of 256.');
\Log::error('Status label count is '.$index.' and exceeds the allowed count of 266.');
//patch fix for array key overflow (color count starts at 1, array starts at 0)
$index = $index - $total_colors - 1;

View file

@ -2,8 +2,8 @@
namespace Tests\Feature;
use Tests\TestCase;
use App\Models\Statuslabel;
use Tests\TestCase;
use App\Models\Asset;
class DefaultColorKeyTest extends TestCase