You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ML] Updated filtering in DetectionRulesIt.testCondition() (#110628)
While working on elastic/ml-cpp#2677, I encountered a failure in the integration test DetectionRulesIt.testCondition(). It checks the number of return records. With the new change in ml-cpp the native code returns two more values that have no significant score. I added filtering those out in the integration test code so it continues working as expected.
Copy file name to clipboardExpand all lines: x-pack/plugin/ml/qa/native-multi-node-tests/src/javaRestTest/java/org/elasticsearch/xpack/ml/integration/DetectionRulesIT.java
+3
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,9 @@ public void testCondition() throws Exception {
95
95
closeJob(job.getId());
96
96
97
97
List<AnomalyRecord> records = getRecords(job.getId());
0 commit comments