Alerting: Test MOA in remote secondary mode (#79828)

This commit is contained in:
Santiago
2024-01-05 11:05:27 +01:00
committed by GitHub
parent 2b02ada7ad
commit 1f6575e65e
4 changed files with 281 additions and 4 deletions
+2 -2
View File
@@ -180,10 +180,10 @@ type FakeOrgStore struct {
orgs []int64
}
func NewFakeOrgStore(t *testing.T, orgs []int64) FakeOrgStore {
func NewFakeOrgStore(t *testing.T, orgs []int64) *FakeOrgStore {
t.Helper()
return FakeOrgStore{
return &FakeOrgStore{
orgs: orgs,
}
}