Skip to content

Commit e27f8fb

Browse files
author
Hendrik Muhs
authored
[Transform] use correct version in BWC serialization test (#60500)
use correct version in BWC serialization test fixes #60464
1 parent f762c6b commit e27f8fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/transform/transforms/pivot/DateHistogramGroupSourceTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ public static DateHistogramGroupSource randomDateHistogramGroupSource(Version ve
5959

6060
return dateHistogramGroupSource;
6161
}
62-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/60464")
62+
6363
public void testBackwardsSerialization72() throws IOException {
6464
// version 7.7 introduced scripts, so test before that
6565
DateHistogramGroupSource groupSource = randomDateHistogramGroupSource(
66-
VersionUtils.randomVersionBetween(random(), Version.V_7_3_0, Version.V_7_7_0)
66+
VersionUtils.randomVersionBetween(random(), Version.V_7_3_0, Version.V_7_6_2)
6767
);
6868

6969
try (BytesStreamOutput output = new BytesStreamOutput()) {

0 commit comments

Comments
 (0)