1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 16:49:41 +00:00

chore: auto format code

This commit is contained in:
Tw93
2025-12-28 11:39:34 +00:00
parent da1b5cb8d4
commit 66ad3b34ee
4 changed files with 14 additions and 14 deletions

View File

@@ -293,11 +293,11 @@ func TestCalculateNameWidth(t *testing.T) {
wantMin int
wantMax int
}{
{80, 19, 60}, // 80 - 61 = 19
{120, 59, 60}, // 120 - 61 = 59
{200, 60, 60}, // Capped at 60
{70, 24, 60}, // Below minimum, use 24
{50, 24, 60}, // Very small, use minimum
{80, 19, 60}, // 80 - 61 = 19
{120, 59, 60}, // 120 - 61 = 59
{200, 60, 60}, // Capped at 60
{70, 24, 60}, // Below minimum, use 24
{50, 24, 60}, // Very small, use minimum
}
for _, tt := range tests {