Skip to content

Commit

Permalink
[Test] Fix S3BlobStoreContainerTests.testNumberOfMultiparts()
Browse files Browse the repository at this point in the history
  • Loading branch information
tlrx committed Nov 10, 2017
1 parent a7d2a82 commit 8f0685b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public void testNumberOfMultipartsWithZeroPartSize() {

public void testNumberOfMultiparts() {
final ByteSizeUnit unit = randomFrom(ByteSizeUnit.BYTES, ByteSizeUnit.KB, ByteSizeUnit.MB, ByteSizeUnit.GB);
final long size = unit.toBytes(randomIntBetween(1, 10));
final long size = unit.toBytes(randomIntBetween(2, 1000));
final int factor = randomIntBetween(2, 10);

// Fits in 1 empty part
Expand Down

0 comments on commit 8f0685b

Please sign in to comment.