From c6842e8498c2d9b469890b38cd9f0d714392c445 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 01 十二月 2023 13:22:02 +0800 Subject: [PATCH] 1. 修改优化日统计和风险统计的逻辑 --- src/test/java/com/flightfeather/monitor/analysis/dust/ExceptionAnalysisControllerTest.kt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/flightfeather/monitor/analysis/dust/ExceptionAnalysisControllerTest.kt b/src/test/java/com/flightfeather/monitor/analysis/dust/ExceptionAnalysisControllerTest.kt index 99cde34..fbe0ee1 100644 --- a/src/test/java/com/flightfeather/monitor/analysis/dust/ExceptionAnalysisControllerTest.kt +++ b/src/test/java/com/flightfeather/monitor/analysis/dust/ExceptionAnalysisControllerTest.kt @@ -27,8 +27,8 @@ @Test fun run() { exceptionAnalysisController.init() - var d1 = LocalDate.of(2023, 7, 1) - val d2 = LocalDate.of(2023, 11, 21) + var d1 = LocalDate.of(2023, 11, 27) + val d2 = LocalDate.of(2023, 11, 27) while (d1.isEqual(d2) || d1.isBefore(d2)) { exceptionAnalysisController.run(d1) d1 = d1.plusDays(1) -- Gitblit v1.9.3