mirror of
https://github.com/golang/go
synced 2024-11-18 13:44:48 -07:00
testing: use strings.LastIndexAny in (*common).decorate
Change-Id: I14c521f4e599e14c71a52342b0ead5d0d4007f1e Reviewed-on: https://go-review.googlesource.com/c/go/+/527655 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Kirill Kolyshkin <kolyshkin@gmail.com> Reviewed-by: Bryan Mills <bcmills@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
This commit is contained in:
parent
3251006291
commit
dd2279ee34
@ -771,9 +771,7 @@ func (c *common) decorate(s string, skip int) string {
|
||||
if file != "" {
|
||||
if *fullPath {
|
||||
// If relative path, truncate file name at last file name separator.
|
||||
} else if index := strings.LastIndex(file, "/"); index >= 0 {
|
||||
file = file[index+1:]
|
||||
} else if index = strings.LastIndex(file, "\\"); index >= 0 {
|
||||
} else if index := strings.LastIndexAny(file, `/\`); index >= 0 {
|
||||
file = file[index+1:]
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user