chore: fix tests

pull/5519/head
Steven 4 months ago
parent fd29a98c90
commit edcddf3c95

@ -48,6 +48,9 @@ func NewTestService(t *testing.T) *TestService {
MarkdownService: markdownService, MarkdownService: markdownService,
} }
// Clear any cached state from previous tests
service.ClearInstanceOwnerCache()
return &TestService{ return &TestService{
Service: service, Service: service,
Store: testStore, Store: testStore,
@ -58,8 +61,8 @@ func NewTestService(t *testing.T) *TestService {
// Cleanup clears caches and closes resources after test. // Cleanup clears caches and closes resources after test.
func (ts *TestService) Cleanup() { func (ts *TestService) Cleanup() {
ts.Service.ClearInstanceOwnerCache()
ts.Store.Close() ts.Store.Close()
// Note: Owner cache is package-level in parent package, cannot clear from test package
} }
// CreateHostUser creates an admin user for testing. // CreateHostUser creates an admin user for testing.

Loading…
Cancel
Save