Steps to reproduce:
import (
"fmt"
fake "github.com/brianvoe/gofakeit"
)
def some_func() {
for i := 0; i < 100; i++ {
fmt.Print(fake.URL())
}
}
Expected result:
No url should have any spaces in the host or scheme parts.
Actual result:
Some urls will have space in the host part.