Skip to content

Commit 153e207

Browse files
authored
Skip testCreateSplitIndexToN on Windows (#93517) (#93643) (#93647)
The forgotten cherry-pick of #93517. Closes #92183
1 parent 9f72a7a commit 153e207

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
@@ -72,14 +72,15 @@ protected boolean forbidPrivateIndexSettings() {
7272
}
7373

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

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

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

0 commit comments

Comments
 (0)