(k, v string)
| 3686 | } |
| 3687 | |
| 3688 | func mustEqualMatcher(k, v string) *labels.Matcher { |
| 3689 | m, err := labels.NewMatcher(labels.MatchEqual, k, v) |
| 3690 | if err != nil { |
| 3691 | panic(err) |
| 3692 | } |
| 3693 | return m |
| 3694 | } |
| 3695 | |
| 3696 | type mockIngester struct { |
| 3697 | sync.Mutex |
no outgoing calls
no test coverage detected