Skip to content

Commit

Permalink
Merge pull request #1588 in ITERATE/cyberduck from bugfix/TRAC-10628 …
Browse files Browse the repository at this point in the history
…to master

* commit '90cc9272d3a4f7b6bfd3b02c01f671783cdd6927':
  Fix #10628.
  • Loading branch information
automerge committed Feb 25, 2019
2 parents 3643860 + 90cc927 commit fd28391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -92,7 +92,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
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 fd28391

Please sign in to comment.