chore: use strings.Contains instead (#3562)
This commit is contained in:
parent
0466226b1d
commit
e6fdc1052a
@ -187,7 +187,7 @@ func (check *scopeCheck) Parse(descr string, t *testing.T) {
|
|||||||
}
|
}
|
||||||
varcheck.name = strings.TrimSpace(decl[:space])
|
varcheck.name = strings.TrimSpace(decl[:space])
|
||||||
varcheck.typ = strings.TrimSpace(decl[space+1:])
|
varcheck.typ = strings.TrimSpace(decl[space+1:])
|
||||||
if strings.Index(varcheck.typ, " ") >= 0 {
|
if strings.Contains(varcheck.typ, " ") {
|
||||||
t.Fatalf("could not parse scope comment %q (%q)", descr, decl)
|
t.Fatalf("could not parse scope comment %q (%q)", descr, decl)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user