fix: 使用 Contains 匹配 missing_project_id 并修复测试 mock

This commit is contained in:
song
2026-01-16 14:18:12 +08:00
parent 455576300c
commit fba3d21a35
3 changed files with 10 additions and 0 deletions

View File

@@ -99,6 +99,10 @@ func (s *accountRepoStub) SetError(ctx context.Context, id int64, errorMsg strin
panic("unexpected SetError call")
}
func (s *accountRepoStub) ClearError(ctx context.Context, id int64) error {
panic("unexpected ClearError call")
}
func (s *accountRepoStub) SetSchedulable(ctx context.Context, id int64, schedulable bool) error {
panic("unexpected SetSchedulable call")
}