(spans tracetest.SpanStubs, op string)
| 296 | } |
| 297 | |
| 298 | func findSpanByName(spans tracetest.SpanStubs, op string) (tracetest.SpanStub, bool) { |
| 299 | for _, span := range spans { |
| 300 | if span.Name == op { |
| 301 | return span, true |
| 302 | } |
| 303 | } |
| 304 | return tracetest.SpanStub{}, false |
| 305 | } |
no outgoing calls
no test coverage detected