Fix mock tests

This commit is contained in:
Tour
2025-12-04 20:00:33 +01:00
parent ed74bb5e93
commit d52bd8f94e
14 changed files with 276 additions and 348 deletions

View File

@@ -18,8 +18,8 @@ public class TroostwijkMonitor {
private static final String LOT_API = "https://api.troostwijkauctions.com/lot/7/list";
RateLimitedHttpClient2 httpClient;
ObjectMapper objectMapper;
RateLimitedHttpClient httpClient;
ObjectMapper objectMapper;
@Getter DatabaseService db;
NotificationService notifier;
ObjectDetectionService detector;
@@ -38,7 +38,7 @@ public class TroostwijkMonitor {
String classNamesPath)
throws SQLException, IOException {
httpClient = new RateLimitedHttpClient2();
httpClient = new RateLimitedHttpClient();
objectMapper = new ObjectMapper();
db = new DatabaseService(databasePath);
notifier = new NotificationService(notificationConfig);