Remove Cloudflare from pack-usb, fix password length test

This commit is contained in:
AetherForge
2026-06-01 16:31:02 -07:00
parent fdfa414a9a
commit afba486c28
3 changed files with 4 additions and 91 deletions

View File

@@ -49,8 +49,8 @@ func TestAuthCacheHitAndMiss(t *testing.T) {
func TestGenerateRandomPasswordLength(t *testing.T) {
pw := generateRandomPassword()
if len(pw) != 20 {
t.Fatalf("expected 20-char hex password, got len %d (%q)", len(pw), pw)
if len(pw) != 8 {
t.Fatalf("expected 8-char hex password, got len %d (%q)", len(pw), pw)
}
}