No need to convert these types.
)
func (l *pageLexer) next() rune {
- if int(l.pos) >= len(l.input) {
+ if l.pos >= len(l.input) {
l.width = 0
return eof
}
}
func (pee *permalinkExpandError) Error() string {
- return fmt.Sprintf("error expanding %q: %s", string(pee.pattern), pee.err)
+ return fmt.Sprintf("error expanding %q: %s", pee.pattern, pee.err)
}
var (
// check for expected errors early to avoid writing files
if b, ok := test.expect.(bool); ok && !b {
- _, err := ns.Config(interface{}(test.path))
+ _, err := ns.Config(test.path)
require.Error(t, err, errMsg)
continue
}