We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e710fd commit eb4670bCopy full SHA for eb4670b
java-manta-it/src/test/java/com/joyent/manta/client/MantaClientDirectoriesIT.java
@@ -186,7 +186,7 @@ public void canAddAtMostOneFailedOperationWhenDepthSetIncorrectly() throws IOExc
186
187
private void directorySkipping(final boolean settingCorrectDepth) throws IOException {
188
final int parentAddedDepth = RandomUtils.nextInt(1, 5);
189
- final int childAddedDepth = RandomUtils.nextInt(1, 5);
+ final int childAddedDepth = RandomUtils.nextInt(2, 5); // child depth of 1 would trigger parts.length <= skipDepth early exit
190
191
final StringBuilder parentDirBuilder = new StringBuilder(testPathPrefix);
192
for (int i = 0; i < parentAddedDepth; i++) {
0 commit comments