You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnnil, types.GinkgoErrors.FailedToParseStackTrace(fmt.Sprintf("Invalid function call: %s -- missing file name and line number", functionCall.Function))
232
231
}
233
232
line=strings.TrimLeft(line, " \t")
234
-
fields:=strings.SplitN(line, ":", 2)
235
-
iflen(fields) !=2 {
236
-
returnnil, types.GinkgoErrors.FailedToParseStackTrace(fmt.Sprintf("Invalid filename nad line number: %s", line))
233
+
delimiterIdx:=strings.LastIndex(line, ":")
234
+
ifdelimiterIdx==-1 {
235
+
returnnil, types.GinkgoErrors.FailedToParseStackTrace(fmt.Sprintf("Invalid filename and line number: %s", line))
0 commit comments