Skip to content

Commit

Permalink
Fix #10628.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Feb 23, 2019
1 parent 11fb3e7 commit 90cc927
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<dependency>
<groupId>ch.iterate.s3</groupId>
<artifactId>jets3t</artifactId>
<version>0.9.19</version>
<version>0.9.20</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class S3MultipartUploadServiceTest extends AbstractS3Test {
public void testUploadSinglePart() throws Exception {
final S3MultipartUploadService service = new S3MultipartUploadService(session, new S3WriteFeature(session, new S3DisabledMultipartService()), 5 * 1024L, 2);
final Path container = new Path("test-us-east-1-cyberduck", EnumSet.of(Path.Type.directory, Path.Type.volume));
final String name = UUID.randomUUID().toString() + ".txt";
final String name = String.format(" %s.txt", UUID.randomUUID().toString());
final Path test = new Path(container, name, EnumSet.of(Path.Type.file));
final Local local = new Local(System.getProperty("java.io.tmpdir"), name);
final String random = new RandomStringGenerator.Builder().build().generate(1000);
Expand Down

0 comments on commit 90cc927

Please sign in to comment.