Files
logs/internal/ingest/alert_outbox_test.go

12 lines
188 B
Go
Raw Normal View History

2026-04-27 19:26:57 +08:00
package ingest
import "testing"
func TestTruncateError(t *testing.T) {
got := truncateError(" abcdef ", 3)
if got != "abc" {
t.Fatalf("unexpected value: %q", got)
}
}