12 lines
188 B
Go
12 lines
188 B
Go
package ingest
|
|
|
|
import "testing"
|
|
|
|
func TestTruncateError(t *testing.T) {
|
|
got := truncateError(" abcdef ", 3)
|
|
if got != "abc" {
|
|
t.Fatalf("unexpected value: %q", got)
|
|
}
|
|
}
|
|
|