fix strange merge issue

This commit is contained in:
Matthew Stobbs 2024-02-24 15:17:44 -07:00
parent 8268934635
commit 7536f525fa
2 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,6 @@ func New() *Config {
// NewFrom will build a configuration from a byte slice. Because this is a
// byte slice, the provided input doesn't matter, it's more about the length,
func NewConfigFrom(in []byte) *Config {
func NewFrom(in []byte) *Config {
c := New()
c.size = len(in)

View File

@ -35,6 +35,8 @@ func Test_GenTinD_With_VaryingSizes(t *testing.T) {
}
for _, v := range tests {
tt := New().WithRuneset(v.runes).WithSize(v.size).Gen()
t.Logf("Generated string: %s", tt.String())
t.Logf("Generated bytes: %v", tt.Bytes())
if len(tt.Runes()) != v.size {
t.Errorf("config set size to %d, but generated an id of size %d. id: %s", v.size, len([]rune(tt.String())), tt.String())
}