Skip to content

Commit

Permalink
[7.x][ML] Re-enable temporarily muted integration tests (#67818) (#67823
Browse files Browse the repository at this point in the history
)

Unmute tests that were temporarily disabled in order to change how the
Java ML process communicates with the C++ backend.

Backports #67818
  • Loading branch information
edsavage authored Jan 21, 2021
1 parent 5f225d7 commit 17b0a3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public void testCondition() throws Exception {
assertThat(records.get(0).getByFieldValue(), equalTo("low"));
}

@AwaitsFix(bugUrl = "https://github.com/elastic/ml-cpp/issues/1253")
public void testScope() throws Exception {
MlFilter safeIps = MlFilter.builder("safe_ips").setItems("111.111.111.111", "222.222.222.222").build();
assertThat(putMlFilter(safeIps).getFilter(), equalTo(safeIps));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ public void testScheduledEventWithInterimResults() throws IOException {
/**
* Test an open job picks up changes to scheduled events/calendars
*/
@AwaitsFix(bugUrl = "https://github.com/elastic/ml-cpp/issues/1253")
public void testAddEventsToOpenJob() throws Exception {
TimeValue bucketSpan = TimeValue.timeValueMinutes(30);
Job.Builder job = createJob("scheduled-events-add-events-to-open-job", bucketSpan);
Expand Down Expand Up @@ -264,7 +263,6 @@ public void testAddEventsToOpenJob() throws Exception {
/**
* An open job that later gets added to a calendar, should take the scheduled events into account
*/
@AwaitsFix(bugUrl = "https://github.com/elastic/ml-cpp/issues/1253")
public void testAddOpenedJobToGroupWithCalendar() throws Exception {
TimeValue bucketSpan = TimeValue.timeValueMinutes(30);
String groupName = "opened-calendar-job-group";
Expand Down

0 comments on commit 17b0a3c

Please sign in to comment.