Skip to content

Commit

Permalink
fix test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
tclxgf13871 committed Feb 9, 2023
1 parent 845d053 commit e72f773
Showing 1 changed file with 0 additions and 9 deletions.
Expand Up @@ -1291,9 +1291,6 @@ public void testChooseTargetWithTopology() throws Exception {
new HashSet<Node>(), 0, policy2, null);
System.out.println(Arrays.asList(targets));
Assert.assertEquals(3, targets.length);
if (namenode != null) {
namenode.stop();
}
}

@Test
Expand Down Expand Up @@ -1338,9 +1335,6 @@ public void testChooseSsdOverDisk() throws Exception {
Assert.assertEquals(2, targets.length);
Assert.assertEquals(StorageType.SSD, targets[0].getStorageType());
Assert.assertEquals(StorageType.DISK, targets[1].getStorageType());
if (namenode != null) {
namenode.stop();
}
}

/**
Expand Down Expand Up @@ -1394,9 +1388,6 @@ public void testAddDatanode2ExistingPipelineInSsd() throws Exception {
null, chsenDs, true,
new HashSet<Node>(), 0, policy, null);
Assert.assertEquals(3, targets.length);
if (namenode != null) {
namenode.stop();
}
}

@Test
Expand Down

0 comments on commit e72f773

Please sign in to comment.