(q string)
| 26 | ) |
| 27 | |
| 28 | func requestWithDefaultRange(q string) *tempopb.QueryRangeRequest { |
| 29 | return &tempopb.QueryRangeRequest{ |
| 30 | Start: 1, |
| 31 | End: 50 * uint64(time.Second), |
| 32 | Step: 15 * uint64(time.Second), |
| 33 | Query: q, |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | var queryRangeTestCases = []struct { |
| 38 | name string |
no outgoing calls
no test coverage detected