Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package org.elasticsearch.xpack.lucene.bwc.codecs;

import org.elasticsearch.Version;
import org.elasticsearch.core.UpdateForV9;
import org.elasticsearch.core.UpdateForV10;
import org.elasticsearch.test.ESTestCase;

public class OldCodecsAvailableTests extends ESTestCase {
Expand All @@ -17,10 +17,8 @@ public class OldCodecsAvailableTests extends ESTestCase {
* Reminder to add Lucene BWC codecs under {@link org.elasticsearch.xpack.lucene.bwc.codecs} whenever Elasticsearch is upgraded
* to the next major Lucene version.
*/
@UpdateForV9(owner = UpdateForV9.Owner.SEARCH_FOUNDATIONS)
@AwaitsFix(bugUrl = "muted until we add bwc codecs to support 7.x indices in Elasticsearch 9.0")
@UpdateForV10(owner = UpdateForV10.Owner.SEARCH_FOUNDATIONS)
public void testLuceneBWCCodecsAvailable() {
assertEquals("Add Lucene BWC codecs for Elasticsearch version 7", 8, Version.CURRENT.major);
assertEquals("Add Lucene BWC codecs for Elasticsearch version 7", 9, Version.CURRENT.major);
}

}