Skip to content

Commit 5e67c6f

Browse files
authored
Skip testCreateSplitIndexToN on Windows (#93517) (#93643)
The forgotten cherry-pick of #93517. Closes #92183
1 parent dd5cbb9 commit 5e67c6f

File tree

1 file changed

+3
-2
lines changed
  • server/src/internalClusterTest/java/org/elasticsearch/action/admin/indices/create

1 file changed

+3
-2
lines changed

server/src/internalClusterTest/java/org/elasticsearch/action/admin/indices/create/SplitIndexIT.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,15 @@ protected boolean forbidPrivateIndexSettings() {
7373
}
7474

7575
public void testCreateSplitIndexToN() throws IOException {
76+
assumeFalse("https://github.com/elastic/elasticsearch/issues/33857", Constants.WINDOWS);
77+
7678
int[][] possibleShardSplits = new int[][] { { 2, 4, 8 }, { 3, 6, 12 }, { 1, 2, 4 } };
7779
int[] shardSplits = randomFrom(possibleShardSplits);
7880
splitToN(shardSplits[0], shardSplits[1], shardSplits[2]);
7981
}
8082

8183
public void testSplitFromOneToN() {
82-
83-
assumeFalse("https://github.com/elastic/elasticsearch/issues/34080", Constants.WINDOWS);
84+
assumeFalse("https://github.com/elastic/elasticsearch/issues/33857", Constants.WINDOWS);
8485

8586
splitToN(1, 5, 10);
8687
client().admin().indices().prepareDelete("*").get();

0 commit comments

Comments
 (0)