This commit is contained in:
Stefan Hardegger
2025-08-20 15:11:41 +02:00
parent 6128d61349
commit 4ee5fa2330

View File

@@ -44,8 +44,8 @@ class AuthorServiceTest {
testAuthor.setId(testId);
testAuthor.setNotes("Test notes");
// Initialize service with null TypesenseService (which is allowed)
authorService = new AuthorService(authorRepository, null);
// Initialize service with null TypesenseService and LibraryAwareService (which is allowed for tests)
authorService = new AuthorService(authorRepository, null, null);
}
@Test