Skip to content

Commit

Permalink
[ML] fixing failing test #80619 (#80626)
Browse files Browse the repository at this point in the history
Periodically, the total length could randomly equal the definition
length. This was a fence post test set up failure closes #80619
  • Loading branch information
benwtrent authored Nov 10, 2021
1 parent 46e1d02 commit 45b4a86
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ public void testChunkDefinitionWithSize() {
}
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/80619")
public void testGetDefinitionFromDocsTruncated() {
String modelId = randomAlphaOfLength(10);
Exception ex = expectThrows(
Expand All @@ -199,7 +198,7 @@ public void testGetDefinitionFromDocsTruncated() {
new BytesArray(randomByteArrayOfLength(10)),
modelId,
0,
randomLongBetween(10, 100),
randomLongBetween(11, 100),
10,
1,
randomBoolean()
Expand Down

0 comments on commit 45b4a86

Please sign in to comment.