caption/caption_util_test.go
Yonah 8e6affff41
caption: overridable default
This increases performance in the typical use case.
2025-07-13 01:38:09 +09:00

10 lines
164 B
Go

package caption
import "testing"
func OverrideGlobalDefault(t *testing.T, v []byte) {
p := defaultFont
t.Cleanup(func() { defaultFont = p })
defaultFont = v
}